@@ -14,7 +14,7 @@ describe("loader", () => {
1414 const compiler = getCompiler ( "simple.js" ) ;
1515 const stats = await compile ( compiler ) ;
1616 const { source, sourceMap } = execute (
17- getModuleSource ( "./foo.coffee" , stats )
17+ getModuleSource ( "./foo.coffee" , stats ) ,
1818 ) ;
1919
2020 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -27,7 +27,7 @@ describe("loader", () => {
2727 const compiler = getCompiler ( "bare.js" ) ;
2828 const stats = await compile ( compiler ) ;
2929 const { source, sourceMap } = execute (
30- getModuleSource ( "./bare.coffee" , stats )
30+ getModuleSource ( "./bare.coffee" , stats ) ,
3131 ) ;
3232
3333 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -55,7 +55,7 @@ describe("loader", () => {
5555 } ) ;
5656 const stats = await compile ( compiler ) ;
5757 const { source, sourceMap } = execute (
58- getModuleSource ( "./foo.coffee" , stats )
58+ getModuleSource ( "./foo.coffee" , stats ) ,
5959 ) ;
6060
6161 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -81,7 +81,7 @@ describe("loader", () => {
8181 const compiler = getCompiler ( "simple.js" , { sourceMap : true } ) ;
8282 const stats = await compile ( compiler ) ;
8383 const { source, sourceMap } = execute (
84- getModuleSource ( "./foo.coffee" , stats )
84+ getModuleSource ( "./foo.coffee" , stats ) ,
8585 ) ;
8686
8787 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -94,7 +94,7 @@ describe("loader", () => {
9494 const compiler = getCompiler ( "simple.js" , { sourceMap : false } ) ;
9595 const stats = await compile ( compiler ) ;
9696 const { source, sourceMap } = execute (
97- getModuleSource ( "./foo.coffee" , stats )
97+ getModuleSource ( "./foo.coffee" , stats ) ,
9898 ) ;
9999
100100 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -107,7 +107,7 @@ describe("loader", () => {
107107 const compiler = getCompiler ( "simple.js" , { } , { devtool : "source-map" } ) ;
108108 const stats = await compile ( compiler ) ;
109109 const { source, sourceMap } = execute (
110- getModuleSource ( "./foo.coffee" , stats )
110+ getModuleSource ( "./foo.coffee" , stats ) ,
111111 ) ;
112112
113113 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -120,7 +120,7 @@ describe("loader", () => {
120120 const compiler = getCompiler ( "simple.js" , { } , { devtool : false } ) ;
121121 const stats = await compile ( compiler ) ;
122122 const { source, sourceMap } = execute (
123- getModuleSource ( "./foo.coffee" , stats )
123+ getModuleSource ( "./foo.coffee" , stats ) ,
124124 ) ;
125125
126126 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -133,11 +133,11 @@ describe("loader", () => {
133133 const compiler = getCompiler (
134134 "simple.js" ,
135135 { sourceMap : true } ,
136- { devtool : false }
136+ { devtool : false } ,
137137 ) ;
138138 const stats = await compile ( compiler ) ;
139139 const { source, sourceMap } = execute (
140- getModuleSource ( "./foo.coffee" , stats )
140+ getModuleSource ( "./foo.coffee" , stats ) ,
141141 ) ;
142142
143143 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -150,7 +150,7 @@ describe("loader", () => {
150150 const compiler = getCompiler ( "simple.js" , { unknown : true } ) ;
151151 const stats = await compile ( compiler ) ;
152152 const { source, sourceMap } = execute (
153- getModuleSource ( "./foo.coffee" , stats )
153+ getModuleSource ( "./foo.coffee" , stats ) ,
154154 ) ;
155155
156156 expect ( source ) . toMatchSnapshot ( "source" ) ;
@@ -163,7 +163,7 @@ describe("loader", () => {
163163 const compiler = getCompiler ( "baz.js" , { literate : true } ) ;
164164 const stats = await compile ( compiler ) ;
165165 const { source, sourceMap } = execute (
166- getModuleSource ( "./baz.litcoffee" , stats )
166+ getModuleSource ( "./baz.litcoffee" , stats ) ,
167167 ) ;
168168
169169 expect ( source ) . toMatchSnapshot ( "source" ) ;
0 commit comments