@@ -14,24 +14,24 @@ test('should be able to setup a subscription and import concepts', async ({ page
14
14
const openConceptLabPage = new OpenConceptLabPage ( page ) ;
15
15
16
16
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 ( ) ;
19
19
} ) ;
20
20
21
21
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 ( ) ;
24
24
} ) ;
25
25
26
26
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 + i t e m s f e t c h e d / ) ;
27
+ await openConceptLabPage . goto ( ) ;
28
+ await openConceptLabPage . previousImportsTab ( ) . click ( ) ;
29
+ await expect ( openConceptLabPage . previousImportsTable ( ) ) . toHaveText ( / \d + i t e m s f e t c h e d / ) ;
30
30
} ) ;
31
31
32
32
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 ( ) ;
35
35
} ) ;
36
36
} ) ;
37
37
0 commit comments