Skip to content

Commit

Permalink
sanity check test now passes completely
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchadwick committed Oct 7, 2024
1 parent 9feeac7 commit 033054c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/frontend/tests/acceptance/sanity-check-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { setupApplicationTest } from 'frontend/tests/helpers';
module('Acceptance | sanity check', function (hooks) {
setupApplicationTest(hooks);

test('will always(?) be true', async function (assert) {
assert.true(true);
});

test('will always(?) be false', async function (assert) {
assert.strictEqual(2 + 2, 5);
test('will always(?) be true', function (assert) {
assert.false(false, 'false is false');
assert.true(true, 'true is true');
assert.notStrictEqual(2 + 2, 5);
// eslint-disable-next-line qunit/no-ok-equality
assert.ok(2 !== 3);
});
});

0 comments on commit 033054c

Please sign in to comment.