Skip to content

Commit 7f626c1

Browse files
committed
refactor review a
1 parent 0c4c256 commit 7f626c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

orga/tests/integration/components/organization-participant/list-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ module('Integration | Component | OrganizationParticipant | List', function (hoo
255255
);
256256

257257
// then
258-
assert.dom(screen.queryByText('drawing')).doesNotExist();
258+
assert.notOk(screen.queryByText('drawing'));
259259
});
260260
});
261261
});

orga/tests/integration/components/organization-participant/table-row_test.gjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ module('Integration | Component | OrganizationParticipant | TableRow', function
275275
);
276276

277277
// then
278-
assert.dom(screen.queryByText('awesome')).doesNotExist();
278+
assert.notOk(screen.queryByText('awesome'));
279279
});
280280

281281
test('should display extra column when defined', async function (assert) {
@@ -307,7 +307,7 @@ module('Integration | Component | OrganizationParticipant | TableRow', function
307307
);
308308

309309
// then
310-
assert.dom(screen.queryByText('awesome value')).exists();
310+
assert.ok(screen.queryByText('awesome value'));
311311
});
312312
});
313313
});

0 commit comments

Comments
 (0)