@@ -33,14 +33,14 @@ test('should extract css with pluginLess successfully in bundle', async () => {
3333 const esmFiles = Object . keys ( contents . esm ) ;
3434 expect ( esmFiles ) . toMatchInlineSnapshot ( `
3535 [
36- "<ROOT>/tests/integration/style/less/bundle/dist/esm/static/css/ index.css",
36+ "<ROOT>/tests/integration/style/less/bundle/dist/esm/index.css",
3737 ]
3838 ` ) ;
3939
4040 const cjsFiles = Object . keys ( contents . cjs ) ;
4141 expect ( cjsFiles ) . toMatchInlineSnapshot ( `
4242 [
43- "<ROOT>/tests/integration/style/less/bundle/dist/cjs/static/css/ index.css",
43+ "<ROOT>/tests/integration/style/less/bundle/dist/cjs/index.css",
4444 ]
4545 ` ) ;
4646} ) ;
@@ -52,15 +52,15 @@ test('should extract css with pluginLess successfully in import case', async ()
5252 const esmFiles = Object . keys ( contents . esm ) ;
5353 expect ( esmFiles ) . toMatchInlineSnapshot ( `
5454 [
55- "<ROOT>/tests/integration/style/less/bundle-import/dist/esm/static/css/ index.css",
55+ "<ROOT>/tests/integration/style/less/bundle-import/dist/esm/index.css",
5656 ]
5757 ` ) ;
5858 expectFileContainContent ( contents . esm , 'index.css' , '.lib1 {' ) ;
5959
6060 const cjsFiles = Object . keys ( contents . cjs ) ;
6161 expect ( cjsFiles ) . toMatchInlineSnapshot ( `
6262 [
63- "<ROOT>/tests/integration/style/less/bundle-import/dist/cjs/static/css/ index.css",
63+ "<ROOT>/tests/integration/style/less/bundle-import/dist/cjs/index.css",
6464 ]
6565 ` ) ;
6666 expectFileContainContent ( contents . cjs , 'index.css' , '.lib1 {' ) ;
0 commit comments