rename generation test names to be more descriptive
This commit is contained in:
5
test/fixtures/generation/edgecase/variable-declaration/expected.js
vendored
Normal file
5
test/fixtures/generation/edgecase/variable-declaration/expected.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
var fact5 = function fact(n) {
|
||||
if (n <= 1)
|
||||
return 1;
|
||||
return n * fact(n - 1);
|
||||
}(5);
|
||||
Reference in New Issue
Block a user