We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The npm test command successfully completes a snapshot test.
I have a project with cdk-docker-image-deployment v0.0.577 and am trying to implement a snapshot test like this using a stack like the one below:
cdk-docker-image-deployment
export class CdkTest1Stack extends cdk.Stack { constructor(scope: Construct, id: string, props?: cdk.StackProps) { super(scope, id, props); const repo = ecr.Repository.fromRepositoryName(this, 'MyRepository', 'myrepository'); new imagedeploy.DockerImageDeployment(this, 'ExampleImageDeploymentWithTag', { source: imagedeploy.Source.directory('./docker'), destination: imagedeploy.Destination.ecr(repo, { tag: 'myspecialtag', }), }); } }
However, when I execute npm test right after executing npm test -u, it always fails with the following output.
npm test
npm test -u
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behavior
The npm test command successfully completes a snapshot test.
Actual behavior
I have a project with
cdk-docker-image-deployment
v0.0.577 and am trying to implement a snapshot test like this using a stack like the one below:However, when I execute
npm test
right after executingnpm test -u
, it always fails with the following output.The text was updated successfully, but these errors were encountered: