This commit is contained in:
Nathan Bierema 2024-08-15 22:30:13 -04:00
parent e8b7783b29
commit 3773787eab

View File

@ -27,9 +27,9 @@ describe('Chrome extension', function () {
}); });
it("should open extension's window", async () => { it("should open extension's window", async () => {
await driver.get(`chrome-extension://${extensionId}/window.html#left`); await driver.get(`chrome-extension://${extensionId}/devpanel.html`);
const url = await driver.getCurrentUrl(); const url = await driver.getCurrentUrl();
expect(url).toBe(`chrome-extension://${extensionId}/window.html#left`); expect(url).toBe(`chrome-extension://${extensionId}/devpanel.html`);
}); });
it('should match document title', async () => { it('should match document title', async () => {