File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2211,7 +2211,7 @@ module.exports = {
22112211
22122212 config . setPublicPath ( '/build' ) ;
22132213 config . addAliases ( {
2214- lib :path . resolve ( './lib' )
2214+ lib : path . resolve ( './lib' )
22152215 } ) ;
22162216 config . enableSassLoader ( ) ;
22172217 config . addStyleEntry ( 'sass' , './css/sass_package_import.scss' ) ;
@@ -2221,24 +2221,24 @@ module.exports = {
22212221 // If this test fails then the import in the above sass file
22222222 // is not loading the package's sass file.
22232223 done ( ) ;
2224- } )
2224+ } ) ;
22252225 } ) ;
22262226
22272227 it ( 'Import via "style" package property' , ( done ) => {
22282228 const config = createWebpackConfig ( 'web/build' , 'dev' ) ;
22292229
22302230 config . setPublicPath ( '/build' ) ;
22312231 config . addAliases ( {
2232- lib :path . resolve ( './lib' )
2232+ lib : path . resolve ( './lib' )
22332233 } ) ;
22342234 config . addStyleEntry ( 'style' , './css/style_package_import.css' ) ;
22352235
22362236 testSetup . runWebpack ( config , ( ) => {
22372237 // A successful compile is all that is needed to pass this test.
22382238 // If this test fails then the import in the above css file
2239- // is not loading the package's style file.
2239+ // is not loading the package's style file.
22402240 done ( ) ;
2241- } )
2241+ } ) ;
22422242 } ) ;
22432243 } ) ;
22442244
You can’t perform that action at this time.
0 commit comments