Skip to content

Commit

Permalink
Update fulfillment.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Adameddy26 authored Jun 14, 2024
1 parent 9328599 commit aa732bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/fulfillment.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const { test, expect, chromium } = require('@playwright/test');
test('Fulfillment', async () => {
test.setTimeout(8000000); // Setting a long timeout to handle long test runs
const browser = await chromium.launch({headless:false});
const context = await browser.newContext({recordVideo: {dir: 'videos/'}}, {viewport: {width:1350, height:650}});
const browser = await chromium.launch({headless:true});
const context = await browser.newContext({recordVideo: {dir: 'videos/'}});
const page = await context.newPage();
await page.setViewport({ width: 1350, height: 650 });

// Function to login to launchpad
async function launchpadLogin() {
Expand Down

0 comments on commit aa732bd

Please sign in to comment.