File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
test/smoke/src/areas/statusbar Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,11 @@ export function setup(logger: Logger) {
16
16
it ( 'verifies presence of all default status bar elements' , async function ( ) {
17
17
const app = this . app as Application ;
18
18
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) {
20
21
await app.workbench.statusbar.waitForStatusbarElement(StatusBarElement.FEEDBACK_ICON);
21
22
}
23
+ */
22
24
await app . workbench . statusbar . waitForStatusbarElement ( StatusBarElement . SYNC_STATUS ) ;
23
25
await app . workbench . statusbar . waitForStatusbarElement ( StatusBarElement . PROBLEMS_STATUS ) ;
24
26
@@ -67,7 +69,7 @@ export function setup(logger: Logger) {
67
69
await app . workbench . statusbar . waitForEOL ( 'CRLF' ) ;
68
70
} ) ;
69
71
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 ( ) {
71
73
const app = this . app as Application ;
72
74
if ( app . quality === Quality . Dev || app . quality === Quality . OSS ) {
73
75
return this . skip ( ) ;
You can’t perform that action at this time.
0 commit comments