Skip to content

Commit baf4e23

Browse files
committed
Don't test the Feedback component
1 parent 2528e0d commit baf4e23

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/smoke/src/areas/statusbar/statusbar.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ export function setup(logger: Logger) {
1616
it('verifies presence of all default status bar elements', async function () {
1717
const app = this.app as Application;
1818
await app.workbench.statusbar.waitForStatusbarElement(StatusBarElement.BRANCH_STATUS);
19-
if (app.quality !== Quality.Dev && app.quality !== Quality.OSS) {
19+
/*
20+
if (app.quality !== Quality.Dev) {
2021
await app.workbench.statusbar.waitForStatusbarElement(StatusBarElement.FEEDBACK_ICON);
2122
}
23+
*/
2224
await app.workbench.statusbar.waitForStatusbarElement(StatusBarElement.SYNC_STATUS);
2325
await app.workbench.statusbar.waitForStatusbarElement(StatusBarElement.PROBLEMS_STATUS);
2426

@@ -67,7 +69,7 @@ export function setup(logger: Logger) {
6769
await app.workbench.statusbar.waitForEOL('CRLF');
6870
});
6971

70-
it(`verifies that 'Tweet us feedback' pop-up appears when clicking on 'Feedback' icon`, async function () {
72+
it.skip(`verifies that 'Tweet us feedback' pop-up appears when clicking on 'Feedback' icon`, async function () {
7173
const app = this.app as Application;
7274
if (app.quality === Quality.Dev || app.quality === Quality.OSS) {
7375
return this.skip();

0 commit comments

Comments
 (0)