Skip to content

Commit

Permalink
fix(core): add missing dot for tsx file extension
Browse files Browse the repository at this point in the history
This missing dot results in .tsx file not being included in coverage reports.
  • Loading branch information
lxghtless authored and jason0x43 committed Sep 25, 2020
1 parent 8dc117f commit a3b9643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/lib/executors/Node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ export default class Node extends Executor<NodeEvents, NodePlugins> {
this._coverageFiles[filename] = true;
return this.instrumentCode(code, filename);
},
{ extensions: ['.js', '.jsx', '.ts', 'tsx'] }
{ extensions: ['.js', '.jsx', '.ts', '.tsx'] }
);
}

Expand Down

0 comments on commit a3b9643

Please sign in to comment.