Fix typo for sb3 test files

This commit is contained in:
Katie Broida
2019-01-17 12:40:30 -05:00
parent e54b590d56
commit 735c7caaae

View File

@@ -114,7 +114,7 @@ const testBubbles = () => test('bubble snapshot', async t => {
// immediately invoked async function to let us wait for each test to finish before starting the next.
(async () => {
const files = fs.readdirSync(testDir())
.filter(uri => uri.endsWith('.sb2') || uri.endsWidth('.sb3'));
.filter(uri => uri.endsWith('.sb2') || uri.endsWith('.sb3'));
for (const file of files) {
await testFile(file);