From 735c7caaae4c91ee04cb48e1caf59d8d574ae632 Mon Sep 17 00:00:00 2001 From: Katie Broida Date: Thu, 17 Jan 2019 12:40:30 -0500 Subject: [PATCH] Fix typo for sb3 test files --- test/integration/scratch-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/scratch-tests.js b/test/integration/scratch-tests.js index c09f1de..dbc3d2e 100644 --- a/test/integration/scratch-tests.js +++ b/test/integration/scratch-tests.js @@ -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);