Skip to content

Commit d12339d

Browse files
committed
feat: add exports
1 parent 8585dbc commit d12339d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

packages/e2e/src/index.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
// re-export
2-
export { init } from './init';
32
export * from './helper/auth-contexts';
4-
export * from './helper/tests';
53
export * from './helper/NetworkManager';
4+
export * from './helper/tests';
5+
export { init } from './init';
66

7-
export { printAligned } from './helper/utils';
87
export { getOrCreatePkp } from './helper/pkp-utils';
98
export { createShivaClient } from './helper/shiva-client';
9+
export { printAligned } from './helper/utils';
1010
export type { AuthContext } from './types';
11+
12+
// re-export new helpers that should be used to refactor the `init.ts` proces
13+
// see packages/e2e/src/tickets/delegation.suite.ts for usage examples
14+
export { createEnvVars } from './helper/createEnvVars';
15+
export { createTestAccount } from './helper/createTestAccount';
16+
export { createTestEnv } from './helper/createTestEnv';
17+
export type { CreateTestAccountResult } from './helper/createTestAccount';

0 commit comments

Comments
 (0)