Skip to content

Commit

Permalink
check:step-identifiers : Removed .ts extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Progi1984 committed Nov 28, 2022
1 parent 2816da5 commit 82c0a2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/UI/tools/stepIdentifiersChecker.js
Expand Up @@ -142,7 +142,8 @@ const checkBaseContext = (jsonFile) => {
.slice(2, contextFile.length)
.map((part) => part
.replace(/[0-9]{2}_/, '')
.replace('.js', ''))
.replace('.js', '')
.replace('.ts', ''))
.join('_');

if (!context.baseContext.startsWith(baseContextFile)) {
Expand Down

0 comments on commit 82c0a2a

Please sign in to comment.