We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a89cd commit 6aba753Copy full SHA for 6aba753
1 file changed
tests/tools/extensions.test.ts
@@ -122,6 +122,9 @@ describe('extension', () => {
122
assert.ok(list.length === 1, 'List should have only one extension');
123
const reinstalled = list.find(e => e.id === extensionId);
124
assert.ok(reinstalled, 'Extension should be present after reload');
125
+ try {
126
+ await context.uninstallExtension(EXTENSION_WITH_SW_PATH);
127
+ } catch (e) {}
128
});
129
130
it('triggers an extension action', async () => {
@@ -147,6 +150,9 @@ describe('extension', () => {
147
150
t => t.type() === 'page' && t.url().includes(extensionId),
148
151
);
149
152
assert.ok(pageTargetAfter, 'Page should exist after action');
153
154
155
156
},
157
{},
158
{
0 commit comments