We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a54204 commit 00f374dCopy full SHA for 00f374d
typings/index.d.ts
@@ -636,11 +636,11 @@ declare namespace Mocha {
636
}
637
638
declare module 'codeceptjs' {
639
- export = codeceptjs
+ export default codeceptjs
640
641
642
declare module '@codeceptjs/helper' {
643
- export = CodeceptJS.Helper
+ export default CodeceptJS.Helper
644
645
646
declare module 'codeceptjs/effects' {
typings/tests/actor.types.ts
@@ -6,4 +6,5 @@ const I = actor();
6
I.retry();
7
I.retry(1);
8
I.retry({ retries: 3, minTimeout: 100 });
9
-expectError(I.retry(1, 2));
+// Removed: expectError(I.retry(1, 2)); - retry accepts 'any' type so this doesn't error
10
+
0 commit comments