rename generation test names to be more descriptive
This commit is contained in:
22
test/fixtures/generation/comments/simple-multi-comment/actual.js
vendored
Normal file
22
test/fixtures/generation/comments/simple-multi-comment/actual.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
function test() {
|
||||
/*
|
||||
* Leading comment
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* Leading comment 2
|
||||
*
|
||||
*/
|
||||
|
||||
var i = 20;
|
||||
/*
|
||||
* Trailing comment
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* Trailing comment 2
|
||||
*
|
||||
*/
|
||||
}
|
||||
18
test/fixtures/generation/comments/simple-multi-comment/expected.js
vendored
Normal file
18
test/fixtures/generation/comments/simple-multi-comment/expected.js
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
function test() {
|
||||
/*
|
||||
* Leading comment
|
||||
*/
|
||||
/*
|
||||
*
|
||||
* Leading comment 2
|
||||
*
|
||||
*/
|
||||
var i = 20; /*
|
||||
* Trailing comment
|
||||
*/
|
||||
/*
|
||||
*
|
||||
* Trailing comment 2
|
||||
*
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user