Skip to content

Commit 1ab576f

Browse files
chore: fmt
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
1 parent 3e2de0a commit 1ab576f

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

e2e/example.spec.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ import {initTestSuiteWithInternetIdentity, initTestSuiteWithPasskey} from './uti
44
testWithII.describe.configure({mode: 'serial'});
55

66
[
7-
{title: 'With II', testSuite: "with-ii" as const, initExamplePage: initTestSuiteWithInternetIdentity},
8-
{title: 'With Passkey', testSuite: "with-passkey" as const, initExamplePage: initTestSuiteWithPasskey}
7+
{
8+
title: 'With II',
9+
testSuite: 'with-ii' as const,
10+
initExamplePage: initTestSuiteWithInternetIdentity
11+
},
12+
{
13+
title: 'With Passkey',
14+
testSuite: 'with-passkey' as const,
15+
initExamplePage: initTestSuiteWithPasskey
16+
}
917
].forEach(({title, testSuite, initExamplePage}) => {
1018
testWithII.describe(title, () => {
1119
const getExamplePage = initExamplePage();

e2e/page-objects/example.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export abstract class ExamplePage extends AppPage {
8080
name,
8181
testSuite
8282
}: {
83-
testSuite: "with-ii" | 'with-passkey';
83+
testSuite: 'with-ii' | 'with-passkey';
8484
mode: 'light' | 'dark' | 'current';
8585
name: string;
8686
}): Promise<void> {

0 commit comments

Comments
 (0)