Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
dacbd authored Oct 26, 2022
2 parents 655b9d6 + 150a0eb commit 4ecb45d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/terraform.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
const winston = require('winston');
const { iterativeCmlRunnerTpl } = require('./terraform');

describe('Terraform tests', () => {
beforeAll(() => {
winston.configure({
transports: [
new winston.transports.Console({
level: 'error',
handleExceptions: true
})
]
});
});

test('default options', async () => {
const output = iterativeCmlRunnerTpl({});
expect(JSON.stringify(output, null, 2)).toMatchInlineSnapshot(`
Expand Down

2 comments on commit 4ecb45d

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

Please sign in to comment.