Skip to content

Commit

Permalink
#116152 enable smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Feb 9, 2021
1 parent 714fd96 commit cd97629
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/smoke/src/areas/extensions/extensions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Application, Quality } from '../../../../automation';

export function setup() {
describe('Extensions', () => {
it.skip(`install and activate vscode-smoketest-check extension`, async function () {
it(`install and activate vscode-smoketest-check extension`, async function () {
const app = this.app as Application;

if (app.quality === Quality.Dev) {
Expand Down
4 changes: 2 additions & 2 deletions test/smoke/src/areas/languages/languages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function setup() {
await app.workbench.quickinput.waitForQuickInputElements(names => names.length === 2);
});

it.skip('verifies problems view', async function () {
it('verifies problems view', async function () {
const app = this.app as Application;
await app.workbench.quickaccess.openFile('style.css');
await app.workbench.editor.waitForTypeInEditor('style.css', '.foo{}');
Expand All @@ -27,7 +27,7 @@ export function setup() {
await app.workbench.problems.hideProblemsView();
});

it.skip('verifies settings', async function () {
it('verifies settings', async function () {
const app = this.app as Application;
await app.workbench.settingsEditor.addUserSetting('css.lint.emptyRules', '"error"');
await app.workbench.quickaccess.openFile('style.css');
Expand Down
2 changes: 1 addition & 1 deletion test/smoke/src/areas/statusbar/statusbar.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function setup(isWeb) {
await app.workbench.quickinput.closeQuickInput();
});

it.skip(`verifies that 'Problems View' appears when clicking on 'Problems' status element`, async function () {
it(`verifies that 'Problems View' appears when clicking on 'Problems' status element`, async function () {
const app = this.app as Application;

await app.workbench.statusbar.clickOn(StatusBarElement.PROBLEMS_STATUS);
Expand Down

0 comments on commit cd97629

Please sign in to comment.