File tree Expand file tree Collapse file tree 1 file changed +1
-28
lines changed
packages/nx-plugin/src/executors/cli Expand file tree Collapse file tree 1 file changed +1
-28
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ describe('parseAutorunExecutorOptions', () => {
108108 ) ;
109109
110110 expect ( osAgnosticPath ( executorOptions . persist ?. outputDir ?? '' ) ) . toBe (
111- osAgnosticPath ( 'workspaceRoot /.code-pushup/my-app ' ) ,
111+ osAgnosticPath ( '{projectRoot} /.code-pushup' ) ,
112112 ) ;
113113 } ) ;
114114
@@ -169,33 +169,6 @@ describe('parseAutorunExecutorOptions', () => {
169169 ) ;
170170 } ,
171171 ) ;
172-
173- it . each < Command > ( [ 'print-config' ] ) (
174- 'should include output config for command %s' ,
175- command => {
176- const projectName = 'my-app' ;
177- const executorOptions = parseAutorunExecutorOptions (
178- {
179- command,
180- output : 'code-pushup.config.json' ,
181- } ,
182- {
183- projectName,
184- workspaceRoot : 'workspaceRoot' ,
185- projectConfig : {
186- name : 'my-app' ,
187- root : 'root' ,
188- } ,
189- } ,
190- ) ;
191-
192- expect ( executorOptions ) . toEqual (
193- expect . objectContaining ( {
194- output : 'code-pushup.config.json' ,
195- } ) ,
196- ) ;
197- } ,
198- ) ;
199172} ) ;
200173
201174describe ( 'mergeExecutorOptions' , ( ) => {
You can’t perform that action at this time.
0 commit comments