From b0f50f6402572aa2f51712783e7138bd22be877f Mon Sep 17 00:00:00 2001 From: rbruckheimer Date: Wed, 3 Mar 2021 13:20:22 -0500 Subject: [PATCH] export chai.Assertion (#1378) --- index.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/index.mjs b/index.mjs index fb824396f..65b726ad9 100644 --- a/index.mjs +++ b/index.mjs @@ -2,6 +2,7 @@ import chai from './index.js'; export const expect = chai.expect; export const version = chai.version; +export const Assertion = chai.Assertion; export const AssertionError = chai.AssertionError; export const util = chai.util; export const config = chai.config;