diff options
author | 2023-08-21 01:29:06 -0700 | |
---|---|---|
committer | 2023-08-21 01:29:06 -0700 | |
commit | c99a9ba33a36f16f79e38ff77423f5d301f6d2a8 (patch) | |
tree | 0ca11cdc93b665668c9c6d07da0ae865cd1f4c77 /test/js/web/web-globals.test.js | |
parent | f75b949524ac4a41e0f015cb981f356444fab331 (diff) | |
download | bun-c99a9ba33a36f16f79e38ff77423f5d301f6d2a8.tar.gz bun-c99a9ba33a36f16f79e38ff77423f5d301f6d2a8.tar.zst bun-c99a9ba33a36f16f79e38ff77423f5d301f6d2a8.zip |
Implement File
Diffstat (limited to 'test/js/web/web-globals.test.js')
-rw-r--r-- | test/js/web/web-globals.test.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/js/web/web-globals.test.js b/test/js/web/web-globals.test.js index 46422c210..9b4c86006 100644 --- a/test/js/web/web-globals.test.js +++ b/test/js/web/web-globals.test.js @@ -20,6 +20,7 @@ test("exists", () => { expect(typeof Blob !== "undefined").toBe(true); expect(typeof FormData !== "undefined").toBe(true); expect(typeof Worker !== "undefined").toBe(true); + expect(typeof File !== "undefined").toBe(true); }); const globalSetters = [ |