Add failing spec for remote static members
This commit is contained in:
parent
5cc61089d9
commit
9e4665fbc4
2 changed files with 25 additions and 0 deletions
15
spec/fixtures/module/remote-static.js
vendored
Normal file
15
spec/fixtures/module/remote-static.js
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
class Foo {
|
||||
static foo() {
|
||||
return 3
|
||||
}
|
||||
|
||||
baz() {
|
||||
return 123
|
||||
}
|
||||
}
|
||||
|
||||
Foo.bar = 'baz'
|
||||
|
||||
module.exports = {
|
||||
Foo: Foo
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue