File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/aws-cdk/test/cli Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1+ import { Toolkit } from '@aws-cdk/toolkit-lib' ;
12import { Notices } from '../../lib/api/notices' ;
23import * as cdkToolkitModule from '../../lib/cli/cdk-toolkit' ;
34import { exec } from '../../lib/cli/cli' ;
45import { CliIoHost } from '../../lib/cli/io-host' ;
56import { Configuration } from '../../lib/cli/user-configuration' ;
67import { TestIoHost } from '../_helpers/io-host' ;
7- import { Toolkit } from '@aws-cdk/toolkit-lib' ;
88
99// Store original version module exports so we don't conflict with other tests
1010const originalVersion = jest . requireActual ( '../../lib/cli/version' ) ;
@@ -111,7 +111,6 @@ jest.mock('../../lib/commands/flags/flags', () => {
111111 } ;
112112} ) ;
113113
114-
115114describe ( 'exec verbose flag tests' , ( ) => {
116115 beforeEach ( ( ) => {
117116 jest . clearAllMocks ( ) ;
@@ -554,7 +553,7 @@ describe('flags command tests', () => {
554553 } ,
555554 context : {
556555 all : {
557- ' myContextParam' : 'testValue' ,
556+ myContextParam : 'testValue' ,
558557 } ,
559558 get : jest . fn ( ) . mockReturnValue ( [ ] ) ,
560559 } ,
@@ -589,4 +588,4 @@ describe('flags command tests', () => {
589588 ) ;
590589 expect ( mockProcessFlagsCommand ) . toHaveBeenCalled ( ) ;
591590 } ) ;
592- } ) ;
591+ } ) ;
You can’t perform that action at this time.
0 commit comments