Skip to content

Commit de0df2f

Browse files
devoto13Jonathan Ginsburg
authored and
Jonathan Ginsburg
committedJan 13, 2022
test: fix version regex in the CLI test case
\d no longer matches since 6.3.10 because of two-digit number.
1 parent eddb2e8 commit de0df2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/e2e/cli.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Feature: CLI
3030
When I execute Karma with arguments: "--version"
3131
Then the stdout matches RegExp:
3232
"""
33-
^\d\.\d\.\d$
33+
^\d+\.\d+\.\d+$
3434
"""
3535

3636
Scenario: Error when command is unknown

0 commit comments

Comments
 (0)
Please sign in to comment.