-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
Input & Expected Output
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
import { withMoar } from 'foo-bar';
module('Acceptance | foo-bar', function () {
setupTest();
function tests() {
test('test one', function() {});
test('test two', function() {});
}
tests();
module('[moar enabled]', withMoar(tests)); // This should stay the same
});Actual output:
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
import { withMoar } from 'foo-bar';
module('Acceptance | foo-bar', function () {
setupTest();
function tests() {
test('test one', function() {});
test('test two', function() {});
}
tests();
module(withMoar(tests), function() {}); // This didn't stay the same
});Metadata
Metadata
Assignees
Labels
No labels