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 { ECHOENDPOINT_URL } from "./Common";
|
||||||
import "./LogBannerReporter";
|
import "./LogBannerReporter";
|
||||||
|
|
||||||
// On slower CI machines, these tests sometimes take longer than 5s
|
|
||||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10 * 1000;
|
|
||||||
|
|
||||||
describe("WebSockets", () => {
|
describe("WebSockets", () => {
|
||||||
it("can be used to connect to SignalR", (done) => {
|
it("can be used to connect to SignalR", (done) => {
|
||||||
const message = "message";
|
const message = "message";
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,6 @@
|
||||||
|
|
||||||
import { ENDPOINT_BASE_URL } from "./Common";
|
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", () => {
|
describe("WebWorkers", () => {
|
||||||
it("can use SignalR client", (done) => {
|
it("can use SignalR client", (done) => {
|
||||||
if (typeof window !== "undefined" && (window as any).Worker) {
|
if (typeof window !== "undefined" && (window as any).Worker) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue