Skip to content

Commit

Permalink
feat: comment test in again
Browse files Browse the repository at this point in the history
  • Loading branch information
martin.mueller committed Dec 19, 2020
1 parent ef4bb4a commit 3d7c61d
Show file tree
Hide file tree
Showing 3 changed files with 170 additions and 248 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@
},
"devDependencies": {
"@aws-cdk/assert": "^1.75.0",
"@types/jest": "^26.0.15",
"@types/jest": "^26.0.19",
"@types/node": "^10.17.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.14.0",
"eslint": "^7.16.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-junit": "^12",
"jsii": "^1.14.1",
"jsii-diff": "^1.14.1",
"jsii-docgen": "^1.4.94",
"jsii-pacmak": "^1.14.1",
"jsii-release": "^0.2.3",
"jsii": "^1.16.0",
"jsii-diff": "^1.16.0",
"jsii-docgen": "^1.5.4",
"jsii-pacmak": "^1.16.0",
"jsii-release": "^0.2.8",
"json-schema": "^0.2.5",
"projen": "^0.5.10",
"standard-version": "^9.0.0",
Expand All @@ -61,7 +61,7 @@
"@aws-cdk/aws-apigateway": "^1.75.0",
"@aws-cdk/aws-iam": "^1.75.0",
"@aws-cdk/core": "^1.75.0",
"alps-unified-ts": "^0.0.20"
"alps-unified-ts": "^0.0.37"
},
"bundledDependencies": [
"alps-unified-ts"
Expand Down
6 changes: 3 additions & 3 deletions test/integ.snapshot.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import '@aws-cdk/assert/jest';
// import { SynthUtils } from '@aws-cdk/assert';
import { SynthUtils } from '@aws-cdk/assert';
import { IntegTesting } from '../src/integ.default';

test('integ snapshot validation', () => {
const integ = new IntegTesting();
integ.stack.forEach(() => {
//expect(SynthUtils.toCloudFormation(stack)).toMatchSnapshot();
integ.stack.forEach(stack => {
expect(SynthUtils.toCloudFormation(stack)).toMatchSnapshot();
});
});
Loading

0 comments on commit 3d7c61d

Please sign in to comment.