Use fixed dimensions on image test

This commit is contained in:
Daniel Imms
2024-07-03 08:17:19 -07:00
parent 11b9eb4a1c
commit 224409d7d6
+1 -1
View File
@@ -61,7 +61,7 @@ const TESTDATA_IIP: [string, [number, number]][] = [
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());