You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/api/app/models/app.js
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -56,29 +56,26 @@ test('Given tagExpression: (@app_scan or @simple_math) - when getActiveFeatureFi
56
56
57
57
// Since cucumber.getTestCasesFromFilesystem was removed, the following test cases fail, including the ones not yet implemented.
58
58
59
-
test.failing('Given tagExpression: (@app_scan and @simple_math) - when getActiveFeatureFileUris is invoked - then no active feature file Uris should be returned',async(t)=>{
59
+
test('Given tagExpression: (@app_scan and @simple_math) - when getActiveFeatureFileUris is invoked - then no active feature file Uris should be returned',async(t)=>{
60
60
t.plan(1);
61
61
// Active feature files are based on the cucumber.tagExpression defined in config.
// What we get is: [`${appRootDir}/testResources/features/app_scan.feature`, `${appRootDir}/testResources/features/simple_math.feature`]
68
67
});
69
68
70
-
test.failing('Given tagExpression: (not @simple_math) - when getActiveFeatureFileUris is invoked - then active feature file Uris app_scan.feature should be returned',async(t)=>{
69
+
test('Given tagExpression: (not @simple_math) - when getActiveFeatureFileUris is invoked - then active feature file Uris app_scan.feature should be returned',async(t)=>{
71
70
t.plan(1);
72
71
// Active feature files are based on the cucumber.tagExpression defined in config.
0 commit comments