Skip to content

Commit

Permalink
test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinkney-aws committed Dec 17, 2024
1 parent 924b90e commit e312707
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/amazonq/test/e2e/amazonq/doc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ describe('Amazon Q Doc', async function () {
sinon.restore()
})

it('test failure', function () {
assert.fail('testing')
})

describe('Quick action availability', () => {
it('Shows /doc when doc generation is enabled', async () => {
const command = tab.findCommand('/doc')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import assert from 'assert'
import { parseVersionsListFromPomFile } from 'aws-core-vscode/codewhisperer/node'

describe('Amazon Q Transform - transformFileHandler tests', function () {
it('test failure', function () {
assert.fail('testing')
})

describe('parseXmlDependenciesReport', function () {
it('Will return parsed values', async function () {
const testXmlReport = `
Expand Down
4 changes: 4 additions & 0 deletions packages/core/src/test/typescriptLambdaHandlerSearch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import { RootlessLambdaHandlerCandidate } from '../shared/lambdaHandlerSearch'
import { TypescriptLambdaHandlerSearch } from '../shared/typescriptLambdaHandlerSearch'

describe('TypescriptLambdaHandlerSearch', function () {
it('test failure', function () {
assert.fail('testing')
})

it('finds export declared functions in Typescript code', async function () {
const filename: string = path.join(testFixturesDir(), 'typescript/sampleFunctions.ts')

Expand Down
4 changes: 4 additions & 0 deletions packages/core/src/testE2E/codecatalyst/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ describe('Test how this codebase uses the CodeCatalyst API', function () {
})
})

it('test failure', function () {
assert.fail('testing')
})

describe('getThisDevEnv', function () {
let ccAuth: CodeCatalystAuthenticationProvider

Expand Down
4 changes: 4 additions & 0 deletions packages/core/src/testInteg/sam.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,10 @@ describe('SAM Integration Tests', async function () {
console.log(`DebugSessions seen in this run:\n${sessionReport}`)
})

it('test failure', function () {
assert.fail('testing')
})

describe('SAM install test', async () => {
let runtimeTestRoot: string
let randomTestScenario: TestScenario
Expand Down

0 comments on commit e312707

Please sign in to comment.