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(e2e) - update react-env version in e2e tests #7747

Merged
merged 5 commits into from
Aug 7, 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
2 changes: 1 addition & 1 deletion e2e/fixtures/workspace-with-tsconfig-issue/workspace.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"policy": {
"dependencies": {
"@teambit/mdx.ui.mdx-scope-context": "0.0.496",
"@teambit/react.react-env": "0.0.55",
"@teambit/react.react-env": "0.1.15",
"@teambit/typescript.typescript-compiler": "0.0.7"
},
"peerDependencies": {}
Expand Down
2 changes: 1 addition & 1 deletion e2e/harmony/custom-env.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ describe('custom env', function () {
const envId = `${helper.scopes.remote}/${envName}`;
helper.command.setEnv('comp1', envId);
helper.command.tagAllWithoutBuild();
helper.command.setEnv('comp1', 'teambit.react/react-env@0.0.56');
helper.command.setEnv('comp1', 'teambit.react/react-env@0.1.15');
});
// previously, it didn't remove the custom-env due to mismatch between the legacy-id and harmony-id.
it('bit status should not show it as an issue because the previous env was removed', () => {
Expand Down
3 changes: 2 additions & 1 deletion e2e/harmony/pkg-manager-errors.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ describe('bit checkout command', function () {
after(() => {
helper.scopeHelper.destroy();
});
describe('component with a non-exist package dependency which triggers the package-manager to fail', () => {
// TODO: @davidfirst @guysaar temporary disabled until we fix it on the registry
describe.skip('component with a non-exist package dependency which triggers the package-manager to fail', () => {
let afterExport: string;
before(() => {
helper.scopeHelper.setNewLocalAndRemoteScopes();
Expand Down