Skip to content

Commit c2f70f9

Browse files
committed
test run
test run
1 parent fb5bace commit c2f70f9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/amazonq/test/e2e/amazonq/testGen.test.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ describe('Amazon Q Test Generation', function () {
8888
sinon.restore()
8989
})
9090

91-
describe('Quick action availability', () => {
91+
describe.skip('Quick action availability', () => {
9292
it('Shows /test when test generation is enabled', async () => {
9393
const command = tab.findCommand('/test')
9494
if (!command.length) {
@@ -112,7 +112,7 @@ describe('Amazon Q Test Generation', function () {
112112
})
113113

114114
describe('/test entry', () => {
115-
describe('Unsupported language', () => {
115+
describe.skip('Unsupported language', () => {
116116
const { language, filePath } = unsupportedLanguages[0]
117117

118118
beforeEach(async () => {
@@ -134,7 +134,7 @@ describe('Amazon Q Test Generation', function () {
134134
})
135135
})
136136

137-
describe('External file', async () => {
137+
describe.skip('External file', async () => {
138138
let testFolder: TestFolder
139139
let fileName: string
140140

@@ -165,7 +165,7 @@ describe('Amazon Q Test Generation', function () {
165165
for (const { language, filePath } of testFiles) {
166166
// skipping for now since this test is flaky. passes locally, but only half the time in CI
167167
// have tried retries for setupTestDocument, openTextDocument, and showTextDocument
168-
describe.skip(`${language} file`, () => {
168+
describe(`${language} file`, () => {
169169
beforeEach(async () => {
170170
await waitUntil(async () => await setupTestDocument(filePath, language), {})
171171

@@ -175,6 +175,7 @@ describe('Amazon Q Test Generation', function () {
175175
await tab.waitForButtons([FollowUpTypes.ViewDiff])
176176
tab.clickButton(FollowUpTypes.ViewDiff)
177177
await tab.waitForChatFinishesLoading()
178+
console.log('beforeEach')
178179
})
179180

180181
describe('View diff', async () => {

0 commit comments

Comments
 (0)