Skip to content

Commit

Permalink
feat: use npx with sheriff
Browse files Browse the repository at this point in the history
  • Loading branch information
rainerhahnekamp committed Jul 31, 2024
1 parent 457092d commit 806bf24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test-projects/angular-i/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ yalc add @softarc/sheriff-core @softarc/eslint-plugin-sheriff

# CLI List Check
echo 'checking for CLI list'
sheriff list src/main.ts > tests/actual/cli-list.txt
npx sheriff list src/main.ts > tests/actual/cli-list.txt
diff tests/actual/cli-list.txt tests/expected/cli-list.txt

# CLI Export Check
echo 'checking for CLI export'
sheriff export src/main.ts > tests/actual/cli-export.txt
npx sheriff export src/main.ts > tests/actual/cli-export.txt
diff tests/actual/cli-export.txt tests/expected/cli-export.txt

# CLI Verify Check
echo 'checking for CLI verify'
sheriff verify src/main.ts > tests/actual/cli-verify.txt
npx sheriff verify src/main.ts > tests/actual/cli-verify.txt
diff tests/actual/cli-verify.txt tests/expected/cli-verify.txt

# Dynamic Import Check
Expand Down

0 comments on commit 806bf24

Please sign in to comment.