1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Bump dependencies (#350)

* Bump dependencies
This commit is contained in:
Oscar Hinton
2021-04-22 21:17:14 +02:00
committed by GitHub
parent 11fff06b8c
commit aca098645a
21 changed files with 3752 additions and 5533 deletions

View File

@@ -2,3 +2,8 @@
const TSConsoleReporter = require('jasmine-ts-console-reporter');
jasmine.getEnv().clearReporters(); // Clear default console reporter
jasmine.getEnv().addReporter(new TSConsoleReporter());
// Polyfills
// tslint:disable-next-line
const jsdom: any = require('jsdom');
(global as any).DOMParser = new jsdom.JSDOM().window.DOMParser;