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 c504a9f commit 5c38927Copy full SHA for 5c38927
plugins/node/instrumentation-cucumber/.tav.yml
@@ -9,3 +9,8 @@
9
mode: latest-minors
10
node: '>=18'
11
commands: npm test
12
+ - versions:
13
+ include: '^11.0.0'
14
+ mode: latest-minors
15
+ node: '>=18'
16
+ commands: npm test
plugins/node/instrumentation-cucumber/src/instrumentation.ts
@@ -47,7 +47,7 @@ type Cucumber = typeof cucumber;
47
type Hook = (typeof hooks)[number];
48
type Step = (typeof steps)[number];
49
50
-const supportedVersions = ['>=8.0.0 <11'];
+const supportedVersions = ['>=8.0.0 <12'];
51
52
export class CucumberInstrumentation extends InstrumentationBase<CucumberInstrumentationConfig> {
53
private module: Cucumber | undefined;
0 commit comments