@@ -47,7 +47,7 @@ describe('nx-plugin', () => {
4747 expect ( code ) . toBe ( 0 ) ;
4848
4949 expect ( projectJson . targets ) . toEqual ( {
50- [ 'code-pushup--configuration' ] : {
50+ 'code-pushup--configuration' : {
5151 configurations : { } ,
5252 executor : 'nx:run-commands' ,
5353 options : {
@@ -99,7 +99,7 @@ describe('nx-plugin', () => {
9999 expect ( code ) . toBe ( 0 ) ;
100100
101101 expect ( projectJson . targets ) . toStrictEqual ( {
102- [ 'cp--configuration' ] : expect . any ( Object ) ,
102+ 'cp--configuration' : expect . any ( Object ) ,
103103 } ) ;
104104 } ) ;
105105
@@ -118,7 +118,7 @@ describe('nx-plugin', () => {
118118 expect ( code ) . toBe ( 0 ) ;
119119
120120 expect ( projectJson . targets ) . toStrictEqual ( {
121- [ 'code-pushup--configuration' ] : expect . objectContaining ( {
121+ 'code-pushup--configuration' : expect . objectContaining ( {
122122 options : {
123123 command : `nx g XYZ:configuration --skipTarget --targetName="code-pushup" --project="${ project } "` ,
124124 } ,
@@ -139,7 +139,7 @@ describe('nx-plugin', () => {
139139
140140 expect ( projectJson . targets ) . toStrictEqual (
141141 expect . not . objectContaining ( {
142- [ 'code-pushup--configuration' ] : expect . any ( Object ) ,
142+ 'code-pushup--configuration' : expect . any ( Object ) ,
143143 } ) ,
144144 ) ;
145145 expect ( projectJson . targets ) . toMatchSnapshot ( ) ;
@@ -156,7 +156,7 @@ describe('nx-plugin', () => {
156156 expect ( code ) . toBe ( 0 ) ;
157157
158158 expect ( projectJson . targets ) . toStrictEqual ( {
159- [ 'code-pushup' ] : {
159+ 'code-pushup' : {
160160 configurations : { } ,
161161 executor : `@code-pushup/nx-plugin:cli` ,
162162 options : { } ,
@@ -222,7 +222,7 @@ describe('nx-plugin', () => {
222222 expect ( code ) . toBe ( 0 ) ;
223223
224224 expect ( projectJson . targets ) . toStrictEqual ( {
225- [ 'code-pushup' ] : expect . objectContaining ( {
225+ 'code-pushup' : expect . objectContaining ( {
226226 executor : 'XYZ:cli' ,
227227 } ) ,
228228 } ) ;
@@ -245,7 +245,7 @@ describe('nx-plugin', () => {
245245 expect ( code ) . toBe ( 0 ) ;
246246
247247 expect ( projectJson . targets ) . toStrictEqual ( {
248- [ 'code-pushup' ] : expect . objectContaining ( {
248+ 'code-pushup' : expect . objectContaining ( {
249249 executor : `@code-pushup/nx-plugin:cli` ,
250250 options : {
251251 projectPrefix : 'cli' ,
0 commit comments