Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test: move e2e tests (#6567)
  • Loading branch information
rarkins committed Jun 22, 2020
1 parent aa9a004 commit 02e6817
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 02e6817

Please sign in to comment.