@@ -11,32 +11,28 @@ describe("SourceMapDevToolModuleOptionsPlugin", () => {
1111 beforeEach ( ( ) => ( eventBindings = undefined ) ) ;
1212
1313 describe ( "with module false and line-to-line false" , ( ) => {
14- beforeEach (
15- ( ) =>
16- ( eventBindings = applyPluginWithOptions (
17- SourceMapDevToolModuleOptionsPlugin ,
18- {
19- module : false ,
20- lineToLine : false
21- }
22- ) )
23- ) ;
14+ beforeEach ( ( ) =>
15+ ( eventBindings = applyPluginWithOptions (
16+ SourceMapDevToolModuleOptionsPlugin ,
17+ {
18+ module : false ,
19+ lineToLine : false
20+ }
21+ ) ) ) ;
2422
2523 it ( "does not bind any event handlers" , ( ) =>
2624 eventBindings . length . should . be . exactly ( 0 ) ) ;
2725 } ) ;
2826
2927 describe ( "with module true" , ( ) => {
30- beforeEach (
31- ( ) =>
32- ( eventBindings = applyPluginWithOptions (
33- SourceMapDevToolModuleOptionsPlugin ,
34- {
35- module : true ,
36- lineToLine : false
37- }
38- ) )
39- ) ;
28+ beforeEach ( ( ) =>
29+ ( eventBindings = applyPluginWithOptions (
30+ SourceMapDevToolModuleOptionsPlugin ,
31+ {
32+ module : true ,
33+ lineToLine : false
34+ }
35+ ) ) ) ;
4036
4137 it ( "binds one event handler" , ( ) =>
4238 eventBindings . length . should . be . exactly ( 1 ) ) ;
@@ -56,16 +52,14 @@ describe("SourceMapDevToolModuleOptionsPlugin", () => {
5652 } ) ;
5753
5854 describe ( "with line-to-line true" , ( ) => {
59- beforeEach (
60- ( ) =>
61- ( eventBindings = applyPluginWithOptions (
62- SourceMapDevToolModuleOptionsPlugin ,
63- {
64- module : false ,
65- lineToLine : true
66- }
67- ) )
68- ) ;
55+ beforeEach ( ( ) =>
56+ ( eventBindings = applyPluginWithOptions (
57+ SourceMapDevToolModuleOptionsPlugin ,
58+ {
59+ module : false ,
60+ lineToLine : true
61+ }
62+ ) ) ) ;
6963
7064 it ( "binds one event handler" , ( ) =>
7165 eventBindings . length . should . be . exactly ( 1 ) ) ;
@@ -85,16 +79,14 @@ describe("SourceMapDevToolModuleOptionsPlugin", () => {
8579 } ) ;
8680
8781 describe ( "with line-to-line object" , ( ) => {
88- beforeEach (
89- ( ) =>
90- ( eventBindings = applyPluginWithOptions (
91- SourceMapDevToolModuleOptionsPlugin ,
92- {
93- module : false ,
94- lineToLine : { }
95- }
96- ) )
97- ) ;
82+ beforeEach ( ( ) =>
83+ ( eventBindings = applyPluginWithOptions (
84+ SourceMapDevToolModuleOptionsPlugin ,
85+ {
86+ module : false ,
87+ lineToLine : { }
88+ }
89+ ) ) ) ;
9890
9991 it ( "binds one event handler" , ( ) =>
10092 eventBindings . length . should . be . exactly ( 1 ) ) ;
0 commit comments