Skip to content

Commit

Permalink
Try to fix Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed Sep 3, 2019
1 parent 5d0fc6e commit 7483dba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/setup-packages-e2e-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process.on( 'unhandledRejection', ( err ) => {
* External dependencies
*/
const Bundler = require( 'parcel-bundler' );
const { join } = require( 'path' );
const { join, resolve } = require( 'path' );
// eslint-disable-next-line jest/no-jest-import
const jest = require( 'jest' );

Expand All @@ -30,7 +30,7 @@ bundler.on( 'buildEnd', () => {
'--config',
'bin/jest.config.js',
'--rootDir',
'packages/rich-text',
resolve( __dirname, '..' ),
'--runInBand',
...process.argv.slice( 2 ),
] ).then( () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/rich-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@babel/core": "7.5.5",
"@wordpress/jest-console": "file:../jest-console"
"@wordpress/element": "file:../element"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 7483dba

Please sign in to comment.