Skip to content

Commit

Permalink
build(jest): Add testURL Jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
mbfisher committed Jul 28, 2018
1 parent 64084d5 commit dd6e5fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
const path = require('path');

module.exports = {
setupTestFrameworkScriptFile: path.resolve(__dirname, 'test/utils/jestSetup.js')
setupTestFrameworkScriptFile: path.resolve(
__dirname,
'test/utils/jestSetup.js'
),
testURL: 'http://localhost'
};

0 comments on commit dd6e5fd

Please sign in to comment.