8000 ci: running some test cases with a local registry to better reflect real-world use cases by haoqunjiang · Pull Request #4193 · vuejs/vue-cli · GitHub
[go: up one dir, main page]

Skip to content

ci: running some test cases with a local registry to better reflect real-world use cases #4193

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

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test: fix ENOENT
  • Loading branch information
haoqunjiang committed Jun 27, 2019
commit 814013ce7cde860852131dda1581d63afe786d97
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
steps:
- attach_workspace:
at: ~/
- run: mkdir ../tests
- run: ./scripts/local-registry.sh
- run: yarn test -p unit-jest

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const createTestProject = require('@vue/cli-test-utils/createTestProject')
jest.setTimeout(20000)

const create = (name, preset) => {
return createTestProject(name, preset, path.resolve(__dirname, '../../../../tests'))
return createTestProject(name, preset, path.resolve(__dirname, '../../../../../tests'))
}

test('should work', async () => {
Expand Down
0