@@ -5,14 +5,14 @@ exports[`"publicPath" option should work and respect "filename" and "chunkFilena
55exports [` "publicPath" option should work and respect "filename" and "chunkFilename" option values: errors 2` ] = ` Array []` ;
66
77exports [` "publicPath" option should work and respect "filename" and "chunkFilename" option values: module 1` ] = `
8- "export default function() {
8+ "export default function Worker_fn () {
99 return new Worker (__webpack_public_path__ + \\" other-static/js/worker.bundle.worker.js\\ " );
1010}
1111"
1212` ;
1313
1414exports [` "publicPath" option should work and respect "filename" and "chunkFilename" option values: module 2` ] = `
15- "export default function() {
15+ "export default function Worker_fn () {
1616 return new Worker (__webpack_public_path__ + \\" other-static/js/worker.worker.js\\ " );
1717}
1818"
@@ -29,7 +29,7 @@ exports[`"publicPath" option should work and respect "filename" and "chunkFilena
2929exports [` "publicPath" option should work and respect the "output.publicPath" option default value: errors 1` ] = ` Array []` ;
3030
3131exports [` "publicPath" option should work and respect the "output.publicPath" option default value: module 1` ] = `
32- "export default function() {
32+ "export default function Worker_fn () {
3333 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
3434}
3535"
@@ -42,7 +42,7 @@ exports[`"publicPath" option should work and respect the "output.publicPath" opt
4242exports [` "publicPath" option should work and respect the "output.publicPath" option value ("function"): errors 1` ] = ` Array []` ;
4343
4444exports [` "publicPath" option should work and respect the "output.publicPath" option value ("function"): module 1` ] = `
45- "export default function() {
45+ "export default function Worker_fn () {
4646 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
4747}
4848"
@@ -55,7 +55,7 @@ exports[`"publicPath" option should work and respect the "output.publicPath" opt
5555exports [` "publicPath" option should work and respect the "output.publicPath" option value ("string"): errors 1` ] = ` Array []` ;
5656
5757exports [` "publicPath" option should work and respect the "output.publicPath" option value ("string"): module 1` ] = `
58- "export default function() {
58+ "export default function Worker_fn () {
5959 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
6060}
6161"
@@ -68,7 +68,7 @@ exports[`"publicPath" option should work and respect the "output.publicPath" opt
6868exports [` "publicPath" option should work and respect the "publicPath" option ("function"): errors 1` ] = ` Array []` ;
6969
7070exports [` "publicPath" option should work and respect the "publicPath" option ("function"): module 1` ] = `
71- "export default function() {
71+ "export default function Worker_fn () {
7272 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
7373}
7474"
@@ -81,7 +81,7 @@ exports[`"publicPath" option should work and respect the "publicPath" option ("f
8181exports [` "publicPath" option should work and respect the "publicPath" option ("string"): errors 1` ] = ` Array []` ;
8282
8383exports [` "publicPath" option should work and respect the "publicPath" option ("string"): module 1` ] = `
84- "export default function() {
84+ "export default function Worker_fn () {
8585 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
8686}
8787"
@@ -94,7 +94,7 @@ exports[`"publicPath" option should work and respect the "publicPath" option ("s
9494exports [` "publicPath" option should work and use "__webpack_public_path__" by default: errors 1` ] = ` Array []` ;
9595
9696exports [` "publicPath" option should work and use "__webpack_public_path__" by default: module 1` ] = `
97- "export default function() {
97+ "export default function Worker_fn () {
9898 return new Worker (__webpack_public_path__ + \\" test.worker.js\\ " );
9999}
100100"
0 commit comments