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
Have for each construct at least a very simple test
For example matching a snapshot:
https://github.com/pepperize/cdk-github/blob/main/test/github-custom-resource.test.ts
describe("GithubCustomResource", () => { it("Should match snapshot", () => { // Given const stack = new Stack(); new GithubCustomResource(stack, "CR", { // ... }); // When const template = Template.fromStack(stack); // Then expect(template).toMatchSnapshot(); }); });
The text was updated successfully, but these errors were encountered:
test: Add first test for GithubCustomResource (pepperize#5)
11e4775
chore: Add first test for GithubCustomResource (#5) (#30)
a229eac
We added a basic test during our [Hackergarten Meetup](https://www.meetup.com/de-DE/hackergarten-stuttgart/events/dvvlwsydcpbcb/).
No branches or pull requests
Have for each construct at least a very simple test
For example matching a snapshot:
https://github.com/pepperize/cdk-github/blob/main/test/github-custom-resource.test.ts
The text was updated successfully, but these errors were encountered: