Add test for #9387

This commit is contained in:
Thiago de Arruda 2017-05-15 09:17:07 -03:00
parent 6b5bd3b6ce
commit 5654ff0d43
5 changed files with 97 additions and 5 deletions

6
spec/fixtures/module/hello.js vendored Normal file
View file

@ -0,0 +1,6 @@
class Hello {
say () {
return 'hi'
}
}
module.exports = Hello