Skip to content

Commit 0b51014

Browse files
committed
Add failing test case for modules with long names
1 parent 0b447c2 commit 0b51014

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { moduleFor, test } from 'ember-qunit';
2+
3+
moduleFor('service:foo', 'Unit | Service | Foo with a very long name that would cause line breaks');
4+
5+
test('it happens', function() {
6+
7+
});
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { module, test } from 'qunit';
2+
import { setupTest } from 'ember-qunit';
3+
4+
module('Unit | Service | Foo with a very long name that would cause line breaks', function(hooks) {
5+
setupTest(hooks);
6+
7+
test('it happens', function() {
8+
9+
});
10+
});

0 commit comments

Comments
 (0)