Skip to content

Commit f7570f4

Browse files
committed
fail
1 parent 5d3ade7 commit f7570f4

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

packages/amazonq/test/e2e/amazonq/featureDev.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ describe('Amazon Q Feature Dev', function () {
4141
)
4242
}
4343

44+
it('fail', () => {
45+
assert.fail('This test should fail')
46+
})
47+
4448
async function clickActionButton(filePath: string, actionName: string) {
4549
tab.clickFileActionButton(filePath, actionName)
4650
await tab.waitForEvent(() => !tab.hasAction(filePath, actionName), {

packages/amazonq/test/unit/amazonq/apps/initContext.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ describe('DefaultAmazonQAppInitContext', () => {
1414
context = new DefaultAmazonQAppInitContext()
1515
})
1616

17+
it('fail', () => {
18+
assert.fail('This test should fail')
19+
})
20+
1721
describe('registerWebViewToAppMessagePublisher', () => {
1822
it('should add the publisher to the map', () => {
1923
const publisher = new MessagePublisher(new EventEmitter())

packages/core/src/test/amazonq/common/contentController.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ describe('contentController', () => {
1414
controller = new EditorContentController()
1515
})
1616

17+
it('fail', () => {
18+
assert.fail('This test should fail')
19+
})
20+
1721
describe('insertTextAtCursorPosition', () => {
1822
it('insert code when left hand size has no non empty character', async () => {
1923
const editor = await toTextEditor('def hello_world():\n ', 'test.py')

packages/core/src/testE2E/codewhisperer/referenceTracker.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ describe('CodeWhisperer service invocation', async function () {
6161
skipTestIfNoValidConn(validConnection, this)
6262
})
6363

64+
it('fail', () => {
65+
assert.fail('This test should fail')
66+
})
67+
6468
it('trigger known to return recs with references returns rec with reference', async function () {
6569
// check that handler is empty before invocation
6670
const requestIdBefore = RecommendationHandler.instance.requestId

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ describe('Notifications Integration Test', function () {
5050
await globals.globalState.update(storageKey, undefined)
5151
})
5252

53+
it('fail', () => {
54+
assert.fail('This test should fail')
55+
})
56+
5357
it('Receive notifications polling from endpoint', async function () {
5458
const controller = getController([VSCODE_EXTENSION_ID.amazonq], true)
5559

0 commit comments

Comments
 (0)