rename generation test names to be more descriptive
This commit is contained in:
12
test/fixtures/generation/comments/object_comments/actual.js
vendored
Normal file
12
test/fixtures/generation/comments/object_comments/actual.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var test = {
|
||||
/**
|
||||
* Test 2
|
||||
*/
|
||||
a:"1",
|
||||
/*
|
||||
* Test 1
|
||||
*/
|
||||
b:"2",
|
||||
// Test 3
|
||||
c:"3"
|
||||
};
|
||||
12
test/fixtures/generation/comments/object_comments/expected.js
vendored
Normal file
12
test/fixtures/generation/comments/object_comments/expected.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var test = {
|
||||
/**
|
||||
* Test 2
|
||||
*/
|
||||
a: "1",
|
||||
/*
|
||||
* Test 1
|
||||
*/
|
||||
b: "2",
|
||||
// Test 3
|
||||
c: "3"
|
||||
};
|
||||
Reference in New Issue
Block a user