From e9efdbd140954ba055129190dda5888e8b59e4e6 Mon Sep 17 00:00:00 2001 From: Jim O'Donnell Date: Thu, 11 Jan 2024 17:46:45 +0000 Subject: [PATCH] Fix global expect --- test/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.mjs b/test/index.mjs index 2506320..83cea1a 100644 --- a/test/index.mjs +++ b/test/index.mjs @@ -31,7 +31,7 @@ const chai = { }; global.chai = chai; -global.expect = baseChai.expect; +global.expect = chai.expect; beforeEach(function() { return redis.flushAll();