Skip to content

Commit

Permalink
✅ Add function strictEqual({ expected, actual })
Browse files Browse the repository at this point in the history
  • Loading branch information
FagnerMartinsBrack committed Sep 20, 2018
1 parent 494cb32 commit 1e0600d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.html
Expand Up @@ -2,6 +2,10 @@
<link rel="stylesheet" href="qunit.css">
<div id="qunit"></div>
<script>
function strictEqual({ expected, actual }, assert) {
assert.strictEqual(actual, expected);
}

QUnit.test('works', (assert) => {
strictEqual({ expected: true, actual: true }, assert);
});
Expand Down

0 comments on commit 1e0600d

Please sign in to comment.