#116152 enable smoke tests

This commit is contained in:
Sandeep Somavarapu 2021-02-09 08:58:39 +01:00
parent 714fd96f61
commit cd97629c44
3 changed files with 4 additions and 4 deletions

View file

@ -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) {

View file

@ -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{}');
@ -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');

View file

@ -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);