-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: repair caching of typescript compiler instances
- Loading branch information
Showing
2 changed files
with
124 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import {tmpdir} from 'os'; | ||
import * as path from 'path'; | ||
import {cleanup, writeFiles} from '../Utils'; | ||
import runJest from '../runJest'; | ||
|
||
const DIR = path.resolve(tmpdir(), 'typescript-config-file'); | ||
|
||
beforeEach(() => cleanup(DIR)); | ||
afterEach(() => cleanup(DIR)); | ||
|
||
test('works with single typescript config that imports something', () => { | ||
writeFiles(DIR, { | ||
'__tests__/mytest.alpha.js': "test('alpha', () => expect(1).toBe(1));", | ||
'__tests__/mytest.common.js': "test('common', () => expect(1).toBe(1));", | ||
'alpha.config.ts': ` | ||
import commonRegex from './common'; | ||
export default { | ||
testRegex: [ commonRegex, '__tests__/mytest.alpha.js' ] | ||
};`, | ||
'common.ts': "export default '__tests__/mytest.common.js$';", | ||
}); | ||
|
||
const {stdout, stderr, exitCode} = runJest( | ||
DIR, | ||
['--projects', 'alpha.config.ts'], | ||
{ | ||
skipPkgJsonCheck: true, | ||
}, | ||
); | ||
|
||
expect(stderr).toContain('PASS __tests__/mytest.alpha.js'); | ||
expect(stderr).toContain('PASS __tests__/mytest.common.js'); | ||
expect(stderr).toContain('Test Suites: 2 passed, 2 total'); | ||
expect(exitCode).toBe(0); | ||
expect(stdout).toBe(''); | ||
}); | ||
|
||
test('works with multiple typescript configs', () => { | ||
writeFiles(DIR, { | ||
'__tests__/mytest.alpha.js': "test('alpha', () => expect(1).toBe(1));", | ||
'__tests__/mytest.beta.js': "test('beta', () => expect(1).toBe(1));", | ||
'alpha.config.ts': ` | ||
export default { | ||
testRegex: '__tests__/mytest.alpha.js' | ||
};`, | ||
'beta.config.ts': ` | ||
export default { | ||
testRegex: '__tests__/mytest.beta.js' | ||
};`, | ||
}); | ||
|
||
const {stdout, stderr, exitCode} = runJest( | ||
DIR, | ||
['--projects', 'alpha.config.ts', 'beta.config.ts'], | ||
{ | ||
skipPkgJsonCheck: true, | ||
}, | ||
); | ||
|
||
expect(stderr).toContain('PASS __tests__/mytest.alpha.js'); | ||
expect(stderr).toContain('PASS __tests__/mytest.beta.js'); | ||
expect(stderr).toContain('Test Suites: 2 passed, 2 total'); | ||
expect(exitCode).toBe(0); | ||
expect(stdout).toBe(''); | ||
}); | ||
|
||
test('works with multiple typescript configs that import something', () => { | ||
writeFiles(DIR, { | ||
'__tests__/mytest.alpha.js': "test('alpha', () => expect(1).toBe(1));", | ||
'__tests__/mytest.beta.js': "test('beta', () => expect(1).toBe(1));", | ||
'__tests__/mytest.common.js': "test('common', () => expect(1).toBe(1));", | ||
'alpha.config.ts': ` | ||
import commonRegex from './common'; | ||
export default { | ||
testRegex: [ commonRegex, '__tests__/mytest.alpha.js' ] | ||
};`, | ||
'beta.config.ts': ` | ||
import commonRegex from './common'; | ||
export default { | ||
testRegex: [ commonRegex, '__tests__/mytest.beta.js' ] | ||
};`, | ||
'common.ts': "export default '__tests__/mytest.common.js$';", | ||
}); | ||
|
||
const {stdout, stderr, exitCode} = runJest( | ||
DIR, | ||
['--projects', 'alpha.config.ts', 'beta.config.ts'], | ||
{ | ||
skipPkgJsonCheck: true, | ||
}, | ||
); | ||
|
||
expect(stderr).toContain('PASS __tests__/mytest.alpha.js'); | ||
expect(stderr).toContain('PASS __tests__/mytest.beta.js'); | ||
expect(stderr).toContain('PASS __tests__/mytest.common.js'); | ||
expect(stderr.replace('PASS __tests__/mytest.common.js', '')).toContain( | ||
'PASS __tests__/mytest.common.js', | ||
); | ||
expect(stderr).toContain('Test Suites: 4 passed, 4 total'); | ||
expect(exitCode).toBe(0); | ||
expect(stdout).toBe(''); | ||
}); |
This file contains 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