Skip to content

Commit ff05742

Browse files
committed
test: add timeout to Linter component and skip Turn-Signal test
1 parent cae34df commit ff05742

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/vt-bot.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ test.describe('Linter component', () => {
179179
await expect(page).toHaveTitle('Linter11');
180180
await page.locator('#totwelve').click();
181181
await expect(page).toHaveTitle('Linter12');
182+
await page.waitForTimeout(500);
182183
expect(consoleOutput).toBe(
183184
'%c[vtbot-linter] suspicious script types in /linter/twelve/ JSHandle@nodeJSHandle@nodeconsole.groupEndstandard script type 2standard script type 1'
184185
);
@@ -279,7 +280,7 @@ test.describe('Loading Indicator', () => {
279280
});
280281
});
281282
test.describe('Turn-Signal', () => {
282-
test('inserts forward and backward values on old and new page', async ({ page }) => {
283+
test.skip('inserts forward and backward values on old and new page', async ({ page }) => {
283284
const msgs: string[] = [];
284285
page.on('console', (msg) => msg.text().startsWith('test:') && msgs.push(msg.text()));
285286
await page.goto('/signal/one/');

0 commit comments

Comments
 (0)