Skip to content

Commit 3fedb84

Browse files
committed
fix tests
1 parent ec32747 commit 3fedb84

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/helpers/todo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function todo(description, callback) {
66
let todos = [];
77
hijackAssert(assert, todos);
88

9-
await callback(assert);
9+
await callback.call(this, assert);
1010

1111
assertTestStatus(assert, todos);
1212
});

tests/integration/records/load-test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ module('integration/load - Loading Records', function(hooks) {
4141
});
4242
});
4343

44-
todo('Empty records remain in the empty state while data is being fetched', async function(assert) {
44+
todo('Empty records remain in the empty state while data is being fetched', async function(
45+
assert
46+
) {
4547
let payloads = [
4648
{
4749
data: {

0 commit comments

Comments
 (0)