You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{module,test}from'qunit';import{setupTest}from'ember-qunit';import{withMoar}from'foo-bar';module('Acceptance | foo-bar',function(){setupTest();functiontests(){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();functiontests(){test('test one',function(){});test('test two',function(){});}tests();module(withMoar(tests),function(){});// This didn't stay the same});
The text was updated successfully, but these errors were encountered:
Input & Expected Output
Actual output:
The text was updated successfully, but these errors were encountered: