Skip to content

Commit

Permalink
tests: fix path in loadTwinkle()
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthvp committed Apr 13, 2021
1 parent f37e702 commit 03be5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function loadTwinkle() {
(await readFile(twinkleCore + 'morebits/morebits.css')) + '\n' + (await readFile(repoRoot + 'css/twinkle.css')),
});
await page.evaluate(await readFile(twinkleCore + 'morebits/morebits.js'));
await page.evaluate(await readFile(repoRoot + 'build/bundle.js'));
await page.evaluate(await readFile(repoRoot + 'build/twinkle.js'));
}

export class TwinkleModuleTest {
Expand Down

0 comments on commit 03be5a0

Please sign in to comment.