Regression test for #1473

master
Lucas Duailibe 2017-12-10 00:52:45 -02:00
parent 694f9c8588
commit 7c83ac782e
2 changed files with 40 additions and 0 deletions

View File

@ -11,6 +11,14 @@ it("does something really long and complicated so I have to write a very long na
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function(done) {
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function myAssertions(done) {
console.log("hello!");
});
it(\`does something really long and complicated so I have to write a very long name for the test\`, function() {
console.log("hello!");
});
@ -104,6 +112,14 @@ it("does something really long and complicated so I have to write a very long na
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function(done) {
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function myAssertions(done) {
console.log("hello!");
});
it(\`does something really long and complicated so I have to write a very long name for the test\`, function() {
console.log("hello!");
});
@ -210,6 +226,14 @@ it("does something really long and complicated so I have to write a very long na
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function(done) {
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function myAssertions(done) {
console.log("hello!");
});
it(\`does something really long and complicated so I have to write a very long name for the test\`, function() {
console.log("hello!");
});
@ -303,6 +327,14 @@ it("does something really long and complicated so I have to write a very long na
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function(done) {
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function myAssertions(done) {
console.log("hello!");
});
it(\`does something really long and complicated so I have to write a very long name for the test\`, function() {
console.log("hello!");
});

View File

@ -8,6 +8,14 @@ it("does something really long and complicated so I have to write a very long na
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function(done) {
console.log("hello!");
});
it("does something really long and complicated so I have to write a very long name for the test", function myAssertions(done) {
console.log("hello!");
});
it(`does something really long and complicated so I have to write a very long name for the test`, function() {
console.log("hello!");
});