Skip to content

Commit

Permalink
fail
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinkney-aws committed Dec 20, 2024
1 parent 5d3ade7 commit f7570f4
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/featureDev.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ describe('Amazon Q Feature Dev', function () {
)
}

it('fail', () => {
assert.fail('This test should fail')
})

async function clickActionButton(filePath: string, actionName: string) {
tab.clickFileActionButton(filePath, actionName)
await tab.waitForEvent(() => !tab.hasAction(filePath, actionName), {
Expand Down
4 changes: 4 additions & 0 deletions packages/amazonq/test/unit/amazonq/apps/initContext.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ describe('DefaultAmazonQAppInitContext', () => {
context = new DefaultAmazonQAppInitContext()
})

it('fail', () => {
assert.fail('This test should fail')
})

describe('registerWebViewToAppMessagePublisher', () => {
it('should add the publisher to the map', () => {
const publisher = new MessagePublisher(new EventEmitter())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ describe('contentController', () => {
controller = new EditorContentController()
})

it('fail', () => {
assert.fail('This test should fail')
})

describe('insertTextAtCursorPosition', () => {
it('insert code when left hand size has no non empty character', async () => {
const editor = await toTextEditor('def hello_world():\n ', 'test.py')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ describe('CodeWhisperer service invocation', async function () {
skipTestIfNoValidConn(validConnection, this)
})

it('fail', () => {
assert.fail('This test should fail')
})

it('trigger known to return recs with references returns rec with reference', async function () {
// check that handler is empty before invocation
const requestIdBefore = RecommendationHandler.instance.requestId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ describe('Notifications Integration Test', function () {
await globals.globalState.update(storageKey, undefined)
})

it('fail', () => {
assert.fail('This test should fail')
})

it('Receive notifications polling from endpoint', async function () {
const controller = getController([VSCODE_EXTENSION_ID.amazonq], true)

Expand Down

0 comments on commit f7570f4

Please sign in to comment.