We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a2722 commit 3ee7a4bCopy full SHA for 3ee7a4b
1 file changed
tests/tools/pages.test.ts
@@ -95,10 +95,11 @@ describe('pages', () => {
95
});
96
97
for (const categoryExtensions of [true, false]) {
98
- it(`list pages for extension service workers ${categoryExtensions ? 'with' : 'without'} --category-extensions`, async() => {
+ it(`list pages for extension service workers ${categoryExtensions ? 'with' : 'without'} --category-extensions`, async () => {
99
await withMcpContext(
100
async (response, context) => {
101
- const extensionId = await context.installExtension(EXTENSION_SW_PATH);
+ const extensionId =
102
+ await context.installExtension(EXTENSION_SW_PATH);
103
assert.ok(extensionId);
104
105
const swTarget = await context.browser.waitForTarget(
0 commit comments