Created
April 21, 2017 08:45
-
-
Save shepherdwind/02a903c06f2dabb67229911d771280ab to your computer and use it in GitHub Desktop.
espower-path-ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('intelli-espower-loader'); | |
require('./test/foo.test.js'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// file path test/foo.test.js | |
throw new Error('123'); | |
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vLnRlc3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJmb28udGVzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFJQSxNQUFNLElBQUksS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDIn0= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// file path test/foo.test.ts | |
interface foo { | |
a: number; | |
} | |
throw new Error('123'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The file
test-foo.test.js
path should betest/foo.test.js
.