Skip to content

Commit bf6c930

Browse files
committed
Rename CSS smoke test to language features: For microsoft#90538
1 parent 66c09fb commit bf6c930

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

test/smoke/src/areas/languages/css.test.ts renamed to test/smoke/src/areas/languages/languages.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { Application, ProblemSeverity, Problems } from '../../../../automation';
6+
import { Application, ProblemSeverity, Problems } from '../../../../automation/out';
77

88
export function setup() {
9-
describe('Languages - CSS', () => {
9+
describe('Language Features', () => {
1010
it('verifies quick outline', async function () {
1111
const app = this.app as Application;
1212
await app.workbench.quickopen.openFile('style.css');
@@ -15,7 +15,7 @@ export function setup() {
1515
await app.workbench.quickopen.waitForQuickOpenElements(names => names.length === 2);
1616
});
1717

18-
it('verifies warnings for the empty rule', async function () {
18+
it('verifies problems view', async function () {
1919
const app = this.app as Application;
2020
await app.workbench.quickopen.openFile('style.css');
2121
await app.workbench.editor.waitForTypeInEditor('style.css', '.foo{}');
@@ -27,7 +27,7 @@ export function setup() {
2727
await app.workbench.problems.hideProblemsView();
2828
});
2929

30-
it('verifies that warning becomes an error once setting changed', async function () {
30+
it('verifies settings', async function () {
3131
const app = this.app as Application;
3232
await app.workbench.settingsEditor.addUserSetting('css.lint.emptyRules', '"error"');
3333
await app.workbench.quickopen.openFile('style.css');

test/smoke/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { setup as setupDataMigrationTests } from './areas/workbench/data-migrati
2525
import { setup as setupDataLossTests } from './areas/workbench/data-loss.test';
2626
import { setup as setupDataPreferencesTests } from './areas/preferences/preferences.test';
2727
import { setup as setupDataSearchTests } from './areas/search/search.test';
28-
import { setup as setupDataLanguagesTests } from './areas/languages/css.test';
28+
import { setup as setupDataLanguagesTests } from './areas/languages/languages.test';
2929
import { setup as setupDataEditorTests } from './areas/editor/editor.test';
3030
import { setup as setupDataStatusbarTests } from './areas/statusbar/statusbar.test';
3131
import { setup as setupDataExtensionTests } from './areas/extensions/extensions.test';

0 commit comments

Comments
 (0)