Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename e2e files #1031

Merged
merged 2 commits into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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