@@ -2,7 +2,7 @@ import Double from '../../../src/value/double'
2
2
import Call from '../../../src/value/call'
3
3
4
4
let subject , popDemonstration , didCallOccur , notifySatisfiedMatchers ,
5
- warnIfAlsoStubbed , fail
5
+ warnIfAlsoStubbed , fail
6
6
module . exports = {
7
7
beforeEach : ( ) => {
8
8
popDemonstration = td . replace ( '../../../src/verify/pop-demonstration' ) . default
@@ -19,7 +19,7 @@ module.exports = {
19
19
td . when ( popDemonstration ( ) ) . thenReturn ( { double, call} )
20
20
td . when ( didCallOccur ( double , call , config ) ) . thenReturn ( true )
21
21
22
- subject ( /*imagine double('a','b','c')*/ undefined , config )
22
+ subject ( /* imagine double('a','b','c') */ undefined , config )
23
23
24
24
td . verify ( notifySatisfiedMatchers ( double , call , config ) )
25
25
td . verify ( warnIfAlsoStubbed ( double , call , config ) )
@@ -32,7 +32,7 @@ module.exports = {
32
32
td . when ( popDemonstration ( ) ) . thenReturn ( { double, call} )
33
33
td . when ( didCallOccur ( double , call , config ) ) . thenReturn ( false )
34
34
35
- subject ( /*imagine double('a','b','X')*/ undefined , config )
35
+ subject ( /* imagine double('a','b','X') */ undefined , config )
36
36
37
37
td . verify ( fail ( double , call , config ) )
38
38
assert . equal ( td . explain ( notifySatisfiedMatchers ) . callCount , 0 )
@@ -43,7 +43,7 @@ module.exports = {
43
43
td . when ( popDemonstration ( ) ) . thenThrow ( new Error ( 'wups' ) )
44
44
45
45
assert . throws ( ( ) => {
46
- subject ( /*imagine double('a','b','X')*/ undefined , config )
46
+ subject ( /* imagine double('a','b','X') */ undefined , config )
47
47
} , / w u p s / )
48
48
49
49
assert . equal ( td . explain ( notifySatisfiedMatchers ) . callCount , 0 )
0 commit comments