Use fixed dimensions on search test

This commit is contained in:
Daniel Imms
2024-07-03 08:09:15 -07:00
parent 2b735a0159
commit 11b9eb4a1c
+1 -1
View File
@@ -12,7 +12,7 @@ import { ITestContext, createTestContext, openTerminal, timeout } from '../../..
let ctx: ITestContext;
test.beforeAll(async ({ browser }) => {
ctx = await createTestContext(browser);
await openTerminal(ctx);
await openTerminal(ctx, { cols: 80, rows: 24 });
});
test.afterAll(async () => await ctx.page.close());