move esnext tests into their own fixtures folder
This commit is contained in:
7
test/fixtures/esnext/es6-classes/method-declaration-with-arguments.js
vendored
Normal file
7
test/fixtures/esnext/es6-classes/method-declaration-with-arguments.js
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
class Tripler {
|
||||
triple(n) {
|
||||
return n * 3;
|
||||
}
|
||||
}
|
||||
|
||||
assert.equal(new Tripler().triple(2), 6);
|
||||
Reference in New Issue
Block a user