From ecf2891588cdcb9b1d2dbdcbb1074e0203e21146 Mon Sep 17 00:00:00 2001 From: Tomer Figenblat Date: Sun, 5 May 2024 22:10:47 -0400 Subject: [PATCH] feat: added chai globals Signed-off-by: Tomer Figenblat --- data/chai.mjs | 5 +++++ globals.json | 5 +++++ scripts/generate-data.mjs | 1 + 3 files changed, 11 insertions(+) create mode 100644 data/chai.mjs diff --git a/data/chai.mjs b/data/chai.mjs new file mode 100644 index 0000000..aec1bfa --- /dev/null +++ b/data/chai.mjs @@ -0,0 +1,5 @@ +export default { + assert: true, + expect: true, + should: true, +}; diff --git a/globals.json b/globals.json index c924228..e6684ed 100644 --- a/globals.json +++ b/globals.json @@ -2471,5 +2471,10 @@ "unmonitor": false, "unmonitorEvents": false, "values": false + }, + "chai": { + "assert": true, + "expect": true, + "should": true } } diff --git a/scripts/generate-data.mjs b/scripts/generate-data.mjs index 63fbe94..adca366 100644 --- a/scripts/generate-data.mjs +++ b/scripts/generate-data.mjs @@ -42,6 +42,7 @@ const environments = [ 'webextensions', 'greasemonkey', 'devtools', + 'chai', ]; async function getData() {