moving folders around

This commit is contained in:
Matthew Zhao
2021-03-03 17:30:57 -08:00
parent 1dd1969ac8
commit 8cdbb0d493
11 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { expect as expectCDK, matchTemplate, MatchStyle } from '@aws-cdk/assert';
import * as cdk from '@aws-cdk/core';
import * as Deploy from '../lib/deploy-stack';
test('Empty Stack', () => {
const app = new cdk.App();
// WHEN
const stack = new Deploy.DeployStack(app, 'MyTestStack');
// THEN
expectCDK(stack).to(matchTemplate({
"Resources": {}
}, MatchStyle.EXACT))
});