Skip to content

Commit

Permalink
squashme
Browse files Browse the repository at this point in the history
  • Loading branch information
naugtur committed Jan 17, 2024
1 parent c97be74 commit f96ab3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/ses/smoke-test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ async function runTests() {
});

const pathToIndex = new URL('./fixture/index.html', import.meta.url).href;
console.log(`opening ${pathToIndex}`)

await page.goto(pathToIndex);
await page.goto(pathToIndex, { waitUntil: 'load' });

assert.equal(
await page.evaluate(`typeof lockdown;`),
Expand All @@ -40,7 +41,7 @@ async function runTests() {
'success';
}
catch (e) {
e;
e.toString();
}
`);
assert.equal(result, 'success', 'lockdown failed');
Expand Down

0 comments on commit f96ab3b

Please sign in to comment.