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
88export 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' ) ;
0 commit comments