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 = {
2211
2211
2212
2212
config . setPublicPath ( '/build' ) ;
2213
2213
config . addAliases ( {
2214
- lib :path . resolve ( './lib' )
2214
+ lib : path . resolve ( './lib' )
2215
2215
} ) ;
2216
2216
config . enableSassLoader ( ) ;
2217
2217
config . addStyleEntry ( 'sass' , './css/sass_package_import.scss' ) ;
@@ -2221,24 +2221,24 @@ module.exports = {
2221
2221
// If this test fails then the import in the above sass file
2222
2222
// is not loading the package's sass file.
2223
2223
done ( ) ;
2224
- } )
2224
+ } ) ;
2225
2225
} ) ;
2226
2226
2227
2227
it ( 'Import via "style" package property' , ( done ) => {
2228
2228
const config = createWebpackConfig ( 'web/build' , 'dev' ) ;
2229
2229
2230
2230
config . setPublicPath ( '/build' ) ;
2231
2231
config . addAliases ( {
2232
- lib :path . resolve ( './lib' )
2232
+ lib : path . resolve ( './lib' )
2233
2233
} ) ;
2234
2234
config . addStyleEntry ( 'style' , './css/style_package_import.css' ) ;
2235
2235
2236
2236
testSetup . runWebpack ( config , ( ) => {
2237
2237
// A successful compile is all that is needed to pass this test.
2238
2238
// 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.
2240
2240
done ( ) ;
2241
- } )
2241
+ } ) ;
2242
2242
} ) ;
2243
2243
} ) ;
2244
2244
You can’t perform that action at this time.
0 commit comments