Skip to content

Commit b24c267

Browse files
committed
chore: fix format
1 parent 4a9c7d2 commit b24c267

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

scripts/eval_scenarios/isolated_context_test.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ export const scenario: TestScenario = {
1919
`,
2020
},
2121
expectations: calls => {
22-
console.log(JSON.stringify(calls, null, 2))
22+
console.log(JSON.stringify(calls, null, 2));
2323
assert.strictEqual(calls.length, 2);
2424
assert.ok(calls[0].name === 'new_page', 'First call should be navigation');
25-
assert.deepStrictEqual(calls[0].args.isolatedContext, "contextB");
26-
assert.ok(calls[1].name === 'take_screenshot', 'Second call should be a screenshot');
25+
assert.deepStrictEqual(calls[0].args.isolatedContext, 'contextB');
26+
assert.ok(
27+
calls[1].name === 'take_screenshot',
28+
'Second call should be a screenshot',
29+
);
2730
},
2831
};

0 commit comments

Comments
 (0)