Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Mar 5, 2024
1 parent 128cbc1 commit 3ecc799
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions website/tests/pages/sequences/accession.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { routes } from '../../../src/routes.ts';
import { getAccessionVersionString } from '../../../src/utils/extractAccessionVersion.ts';
import { baseUrl, dummyOrganism, expect, test, testSequenceEntryData, DEFAULT_GROUP_NAME } from '../../e2e.fixture';
import { baseUrl, dummyOrganism, expect, test, testSequenceEntryData } from '../../e2e.fixture';
import { getTestSequences } from '../../util/testSequenceProvider.ts';

test.describe('The detailed sequence page', () => {
Expand Down Expand Up @@ -58,8 +58,10 @@ test.describe('The detailed sequence page', () => {
);
});

test('can revoke', async ({ sequencePage }) => {
createGroup(DEFAULT_GROUP_NAME);
test('can revoke', async ({ sequencePage, loginAsTestUser }) => {

await loginAsTestUser();

const testSequences = getTestSequences();

await sequencePage.goto(testSequences.sequenceToRevoke);
Expand Down

0 comments on commit 3ecc799

Please sign in to comment.