Skip to content

Commit e312707

Browse files
committed
test failures
1 parent 924b90e commit e312707

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

packages/amazonq/test/e2e/amazonq/doc.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ describe('Amazon Q Doc', async function () {
4545
sinon.restore()
4646
})
4747

48+
it('test failure', function () {
49+
assert.fail('testing')
50+
})
51+
4852
describe('Quick action availability', () => {
4953
it('Shows /doc when doc generation is enabled', async () => {
5054
const command = tab.findCommand('/doc')

packages/amazonq/test/unit/amazonqGumby/transformFileHandler.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import assert from 'assert'
66
import { parseVersionsListFromPomFile } from 'aws-core-vscode/codewhisperer/node'
77

88
describe('Amazon Q Transform - transformFileHandler tests', function () {
9+
it('test failure', function () {
10+
assert.fail('testing')
11+
})
12+
913
describe('parseXmlDependenciesReport', function () {
1014
it('Will return parsed values', async function () {
1115
const testXmlReport = `

packages/core/src/test/typescriptLambdaHandlerSearch.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { RootlessLambdaHandlerCandidate } from '../shared/lambdaHandlerSearch'
1010
import { TypescriptLambdaHandlerSearch } from '../shared/typescriptLambdaHandlerSearch'
1111

1212
describe('TypescriptLambdaHandlerSearch', function () {
13+
it('test failure', function () {
14+
assert.fail('testing')
15+
})
16+
1317
it('finds export declared functions in Typescript code', async function () {
1418
const filename: string = path.join(testFixturesDir(), 'typescript/sampleFunctions.ts')
1519

packages/core/src/testE2E/codecatalyst/client.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ describe('Test how this codebase uses the CodeCatalyst API', function () {
139139
})
140140
})
141141

142+
it('test failure', function () {
143+
assert.fail('testing')
144+
})
145+
142146
describe('getThisDevEnv', function () {
143147
let ccAuth: CodeCatalystAuthenticationProvider
144148

packages/core/src/testInteg/sam.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,10 @@ describe('SAM Integration Tests', async function () {
302302
console.log(`DebugSessions seen in this run:\n${sessionReport}`)
303303
})
304304

305+
it('test failure', function () {
306+
assert.fail('testing')
307+
})
308+
305309
describe('SAM install test', async () => {
306310
let runtimeTestRoot: string
307311
let randomTestScenario: TestScenario

0 commit comments

Comments
 (0)