Skip to content

Commit

Permalink
Merge pull request #1031 from flexn-io/chore/rename-e2e-files
Browse files Browse the repository at this point in the history
chore: rename e2e files
  • Loading branch information
mihaiblaga89 authored Jun 22, 2023
2 parents c269015 + 8271c84 commit dad6838
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions packages/template-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"scripts": {
"bootstrap": "cd ../.. && yarn bootstrap",
"e2e:all": "yarn e2e:ios ; yarn e2e:tvos ; yarn e2e:android ; yarn e2e:androidtv ; yarn e2e:macos ; yarn e2e:web",
"e2e:android": "PLATFORM=android JAVA_HOME=$(/usr/libexec/java_home) npx wdio wdio.conf.ts",
"e2e:androidtv": "PLATFORM=androidtv JAVA_HOME=$(/usr/libexec/java_home) npx wdio wdio.conf.ts",
"e2e:ios": "PLATFORM=ios npx wdio wdio.conf.ts",
"e2e:macos": "PLATFORM=macos ENGINE=macos npx wdio wdio.conf.ts",
"e2e:tvos": "PLATFORM=tvos npx wdio wdio.conf.ts",
"e2e:web": "PLATFORM=web npx wdio wdio.conf.ts",
"e2e:android": "PLATFORM=android JAVA_HOME=$(/usr/libexec/java_home) npx wdio wdio.conf.cjs",
"e2e:androidtv": "PLATFORM=androidtv JAVA_HOME=$(/usr/libexec/java_home) npx wdio wdio.conf.cjs",
"e2e:ios": "PLATFORM=ios npx wdio wdio.conf.cjs",
"e2e:macos": "PLATFORM=macos ENGINE=macos npx wdio wdio.conf.cjs",
"e2e:tvos": "PLATFORM=tvos npx wdio wdio.conf.cjs",
"e2e:web": "PLATFORM=web npx wdio wdio.conf.cjs",
"report": "yarn report:generate && yarn report:open",
"report:generate": "npx allure generate --clean reporting/allure-results -o reporting/allure-report",
"report:open": "npx allure open reporting/allure-report",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ exports.config = {
// then the current working directory is where your `package.json` resides, so `wdio`
// will be called from there.
//
specs: ['./test/specs/e2e.ts'],
specs: ['./test/specs/e2e.cjs'],
// Patterns to exclude.
exclude: [
// 'path/to/excluded/files'
Expand Down

0 comments on commit dad6838

Please sign in to comment.