Skip to content

Commit 9094968

Browse files
authored
fix: correct test dir (#224)
1 parent 595946b commit 9094968

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/constant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const HOOK_FILE_LOADER = 'appHook:fileLoader';
3333
export const HOOK_CONFIG_HANDLE = 'appHook:configHandle::';
3434

3535
export const DEFAULT_EXCLUDES = [
36-
'test/',
36+
'test',
3737
'node_modules',
3838
'.*',
3939
'tsconfig*.json',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
throw new Error('should not scan me');

test/scanner.test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ describe('test/scanner.test.ts', () => {
4949
});
5050
});
5151

52+
it('should not scan test dir', async () => {
53+
const scanner = new Scanner({ needWriteFile: false, extensions: ['.ts', '.js', '.json'] });
54+
const scanResults = await scanner.scan(path.resolve(__dirname, './fixtures/app_with_lifecycle'));
55+
const { default: manifest } = scanResults;
56+
expect(manifest.items).toBeDefined();
57+
expect(manifest.items.find(item => item.filename === 'throw.ts')).toBeUndefined();
58+
});
59+
5260
it('should scan module with custom loader', async () => {
5361
// TODO: allow scan custom loader
5462
const { default: TestCustomLoader } = await import('./fixtures/module_with_custom_loader/src/loader/test_custom_loader');

0 commit comments

Comments
 (0)