We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89df4ce commit 5ea04d6Copy full SHA for 5ea04d6
src/commands/test.ts
@@ -1,5 +1,4 @@
1
import { command } from 'yargs'
2
-import { logInfo } from '../utilities/log'
3
import { resolve } from 'path'
4
const jest = require('jest')
5
@@ -15,10 +14,14 @@ command(
15
14
)
16
17
function test() {
18
- logInfo('Testing....')
19
-
20
jest.runCLI(
21
{
+ globals: JSON.stringify({
+ __TRANSFORM_HTML__: true,
+ 'ts-jest': {
22
+ tsConfigFile: resolve('tsconfig.json')
23
+ }
24
+ }),
25
transform: JSON.stringify({
26
'^.+\\.(ts|js|html)$': resolve(
27
'node_modules/fusing-angular-cli/.build/jest/preprocessor.js'
0 commit comments