Skip to content

Commit fa225e3

Browse files
committed
Suggested changes
1 parent 74c95af commit fa225e3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

e2e/specs/openConceptLab.spec.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ test('should be able to setup a subscription and import concepts', async ({ page
1414
const openConceptLabPage = new OpenConceptLabPage(page);
1515

1616
await test.step('When I setup the subscription', async () => {
17-
await openConceptLabPage.goto();
18-
await openConceptLabPage.addOclSubscription();
17+
await openConceptLabPage.goto();
18+
await openConceptLabPage.addOclSubscription();
1919
});
2020

2121
await test.step('And I starts an import', async () => {
22-
await openConceptLabPage.importTab().click();
23-
await openConceptLabPage.startImport();
22+
await openConceptLabPage.importTab().click();
23+
await openConceptLabPage.startImport();
2424
});
2525

2626
await test.step('Then the import results should appear in the test report', async () => {
27-
await openConceptLabPage.goto();
28-
await openConceptLabPage.previousImportsTab().click();
29-
await expect(openConceptLabPage.previousImportsTable()).toHaveText(/\d+ items fetched/);
27+
await openConceptLabPage.goto();
28+
await openConceptLabPage.previousImportsTab().click();
29+
await expect(openConceptLabPage.previousImportsTable()).toHaveText(/\d+ items fetched/);
3030
});
3131

3232
await test.step('And I unsubscribes', async () => {
33-
await openConceptLabPage.subscriptionTab().click();
34-
await openConceptLabPage.unsubscribe();
33+
await openConceptLabPage.subscriptionTab().click();
34+
await openConceptLabPage.unsubscribe();
3535
});
3636
});
3737

0 commit comments

Comments
 (0)