Don't override jasmine.DEFAULT_TIMEOUT_INTERVAL from Common.ts (#9586)
This commit is contained in:
parent
2e8e1b1ec1
commit
9b999b3afb
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue