File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 44
55# sources are inlined
66src
7+ ! build /ngtsc /reflection /src
78
89# Development scripts
910scripts
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ const execa = require('execa');
66const logger = require ( './logger' ) ;
77const { exampleAppsToRun, rootDir } = require ( './paths' ) ;
88
9- const jestArgs = process . argv . slice ( 3 ) ;
10-
119const executeTest = ( projectPath ) => {
1210 // we change current directory
1311 process . chdir ( projectPath ) ;
@@ -38,14 +36,8 @@ const executeTest = (projectPath) => {
3836 } ) ;
3937
4038 // then we can run the tests
41- const cmdLine = [ 'yarn' , 'test' ] ;
42- const cmdESMLine = [ 'yarn' , 'test-esm' ] ;
43- if ( jestArgs . length ) {
44- cmdLine . push ( '--' ) ;
45- cmdESMLine . push ( '--' ) ;
46- cmdLine . push ( ...jestArgs ) ;
47- cmdESMLine . push ( ...jestArgs ) ;
48- }
39+ const cmdLine = [ 'yarn' , 'test' , '--no-cache' ] ;
40+ const cmdESMLine = [ 'yarn' , 'test-esm' , '--no-cache' ] ;
4941
5042 logger . log ( 'starting the CommonJS tests using:' , ...cmdLine ) ;
5143 logger . log ( ) ;
You can’t perform that action at this time.
0 commit comments