From 41d93fd629493061fbabe5cd34f8a5893e2475c8 Mon Sep 17 00:00:00 2001 From: Matt Broadstone Date: Fri, 25 Aug 2017 15:54:12 -0400 Subject: [PATCH] feat(test-shared): add `notEqual` assertion --- test/functional/shared.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functional/shared.js b/test/functional/shared.js index 842615eda3..a105168ea1 100644 --- a/test/functional/shared.js +++ b/test/functional/shared.js @@ -41,6 +41,10 @@ var assert = { expect(a).to.eql(b); }, + notEqual: function(a, b) { + expect(a).to.not.equal(b); + }, + ok: function(a) { expect(a).to.be.ok; },