Skip to content

Commit c7a09b9

Browse files
committed
Fix lints since eslint-plugin-ember was upgraded
1 parent 0286cb6 commit c7a09b9

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tests/helpers/destroy-app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { run } from '@ember/runloop';
22

33
export default function destroyApp(application) {
4+
// eslint-disable-next-line ember/no-runloop
45
run(application, 'destroy');
56
}

tests/helpers/start-app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { run } from '@ember/runloop';
55
export default function startApp(attrs) {
66
const attributes = Object.assign({}, config.APP, attrs); // use defaults, but you can override;
77

8+
// eslint-disable-next-line ember/no-runloop
89
return run(() => {
910
const application = Application.create(attributes);
1011
application.setupForTesting();

0 commit comments

Comments
 (0)