Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Mar 9, 2024
1 parent d01a8a7 commit 47119ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions website/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,19 @@ export default defineConfig({
globalSetup: './tests/playwrightSetup.ts',

projects: [

{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
} /* ,
{
},
...process.env.ALL_BROWSERS === 'true' ? [{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},*/
}] : [],

],
});
});
2 changes: 2 additions & 0 deletions website/tests/pages/sequences/accession.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ test.describe('The detailed sequence page', () => {

await userPage.goToUserPage();
// capture a screenshot
/*
await userPage.page.screenshot({ path: 'userPage.png' });
const testSequences = getTestSequences();
Expand All @@ -76,5 +77,6 @@ test.describe('The detailed sequence page', () => {
await expect(sequencePage.page.getByText(`Revoke this sequence`)).toBeVisible();
await sequencePage.page.click('text=Revoke this sequence');
*/
});
});

0 comments on commit 47119ca

Please sign in to comment.