Skip to content

Commit

Permalink
test: fix version regex in the CLI test case
Browse files Browse the repository at this point in the history
\d no longer matches since 6.3.10 because of two-digit number.
  • Loading branch information
devoto13 authored and Jonathan Ginsburg committed Jan 13, 2022
1 parent eddb2e8 commit de0df2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/cli.feature
Expand Up @@ -30,7 +30,7 @@ Feature: CLI
When I execute Karma with arguments: "--version"
Then the stdout matches RegExp:
"""
^\d\.\d\.\d$
^\d+\.\d+\.\d+$
"""

Scenario: Error when command is unknown
Expand Down

0 comments on commit de0df2f

Please sign in to comment.