We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f54465 + 55cbba0 commit e9b88b9Copy full SHA for e9b88b9
test/smoke/iac/test.spec.ts
@@ -12,11 +12,10 @@ describe('snyk iac test', () => {
12
const filePath = 'iac/depth_detection/root.tf';
13
14
// Act
15
- const { stderr, stdout, exitCode } = await run(`snyk iac test ${filePath}`);
+ const { stdout, exitCode } = await run(`snyk iac test ${filePath}`);
16
17
// Assert
18
expect(stdout).toContain('Infrastructure as Code');
19
- expect(stderr).toBe('');
20
expect(exitCode).toBeLessThan(2);
21
});
22
0 commit comments