Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

feat(*): add ability to use .jsx extensions for tests #28

Merged
merged 1 commit into from
Feb 13, 2017
Merged
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 lib/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function assetsRoot() {
function testPathToChunkName(testPath) {
const name = testPath
.replace(/\//g, '-')
.replace(/\.js$/, '.bundle.js');
.replace(/\.jsx?$/, '.bundle.js');
return encodeURI(name);
}

Expand Down