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

fix: failing peer dependencies test #8589

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ jobs:
- run: 'rm bit/node_modules/.bin/bit'
- run:
name: 'Run e2e tests'
command: 'cd bit && circleci tests glob "e2e/**/*.e2e*.ts" | circleci tests split --split-by=filesize | xargs -n 1 npm run mocha-circleci'
command: 'cd bit && circleci tests glob "e2e/**/*.e2e*.ts" | circleci tests split --split-by=filesize | xargs -n 1 npm run mocha-circleci --debug'
# command which support only - for debug purpose
# command: cd bit && npm run e2e-test-circle --debug
environment:
Expand Down
3 changes: 1 addition & 2 deletions e2e/functionalities/peer-dependencies.e2e.3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ describe('peer-dependencies functionality', function () {
});
});

// @todo: this test randomly fails, it'll fixed later by Zoltan
(supportNpmCiRegistryTesting ? describe.skip : describe.skip)(
(supportNpmCiRegistryTesting ? describe : describe.skip)(
'a component is a peer dependency added by an env',
function () {
let workspaceCapsulesRootDir: string;
Expand Down