Don't override jasmine.DEFAULT_TIMEOUT_INTERVAL from Common.ts (#9586)

This commit is contained in:
Stephen Halter 2019-04-22 10:03:27 -07:00 committed by Andrew Stanton-Nurse
parent 2e8e1b1ec1
commit 9b999b3afb
2 changed files with 0 additions and 6 deletions

View File

@ -4,9 +4,6 @@
import { ECHOENDPOINT_URL } from "./Common";
import "./LogBannerReporter";
// On slower CI machines, these tests sometimes take longer than 5s
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10 * 1000;
describe("WebSockets", () => {
it("can be used to connect to SignalR", (done) => {
const message = "message";

View File

@ -3,9 +3,6 @@
import { ENDPOINT_BASE_URL } from "./Common";
// On slower CI machines, these tests sometimes take longer than 5s
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10 * 1000;
describe("WebWorkers", () => {
it("can use SignalR client", (done) => {
if (typeof window !== "undefined" && (window as any).Worker) {