From 868d2df14430182249d8a44a66ed8d1541cf9f4c Mon Sep 17 00:00:00 2001 From: rbruckheimer Date: Tue, 2 Mar 2021 14:31:25 -0500 Subject: [PATCH] export chai.Assertion --- 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;