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

test: move e2e tests #6567

Merged
merged 2 commits into from Jun 22, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -10,7 +10,7 @@
/package-lock.json
*.pyc
renovate-0.0.0-semantic-release.tgz
/e2e/node_modules
/test/e2e/node_modules
.eslintcache
junit.xml
/test-results
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,7 +34,7 @@
"release": "node --experimental-modules tools/release.mjs",
"start": "babel-node --extensions \".ts,.js\" -- lib/renovate.ts",
"test-dirty": "git diff --exit-code",
"test-e2e": "npm pack && cd e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
"test-e2e": "npm pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
"test-schema": "babel-node --extensions \".ts,.js\" -- test/json-schema.ts",
"test": "run-s lint test-schema type-check jest",
"tsc": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion e2e/package.json → test/e2e/package.json
Expand Up @@ -6,7 +6,7 @@
"test": "renovate --version && renovate-config-validator"
},
"dependencies": {
"renovate": "../renovate-0.0.0-semantic-release.tgz"
"renovate": "../../renovate-0.0.0-semantic-release.tgz"
},
"renovate-config": {
"default": {
Expand Down