Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GiladShoham committed Jun 28, 2017
1 parent 247b1cc commit ebf2aee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions e2e/hooks/javascript-hooks.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('javascript-hooks', function () {
before(() => {
helper.cleanEnv();
helper.runCmd('bit init');
helper.runCmd('bit import bit.envs/compilers/babel --compiler');
helper.runCmd('bit import bit.envs/compilers/babel::5 --compiler');
helper.runCmd('bit create foo');
fs.writeFileSync(fooImplPath, fooComponentFixture);
helper.runCmd('bit build -i foo');
Expand Down Expand Up @@ -105,7 +105,7 @@ describe('javascript-hooks', function () {
before(() => {
helper.cleanEnv();
helper.runCmd('bit init');
helper.runCmd('bit import bit.envs/compilers/babel --compiler');
helper.runCmd('bit import bit.envs/compilers/babel::5 --compiler');
helper.runCmd('bit create foo');
fs.writeFileSync(fooImplPath, fooComponentFixture);
helper.runCmd('bit commit foo commit-msg'); // does the build as well
Expand Down Expand Up @@ -149,7 +149,7 @@ describe('javascript-hooks', function () {
before(() => {
helper.cleanEnv();
helper.runCmd('bit init');
helper.runCmd('bit import bit.envs/compilers/babel --compiler');
helper.runCmd('bit import bit.envs/compilers/babel::5 --compiler');
helper.runCmd('bit create foo');
fs.writeFileSync(fooImplPath, fooComponentFixture);
helper.runCmd('bit commit foo commit-msg'); // does the build as well
Expand Down Expand Up @@ -200,7 +200,7 @@ describe('javascript-hooks', function () {
before(() => {
helper.cleanEnv();
helper.runCmd('bit init');
helper.runCmd('bit import bit.envs/compilers/babel --compiler');
helper.runCmd('bit import bit.envs/compilers/babel::5 --compiler');
helper.runCmd('bit create foo');
fs.writeFileSync(fooImplPath, fooComponentFixture);
helper.runCmd('bit commit foo commit-msg'); // does the build as well
Expand Down

0 comments on commit ebf2aee

Please sign in to comment.