Skip to content

Commit

Permalink
Oops, don't enable the ones that were skipped before
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkr committed Aug 23, 2023
1 parent 6811ba4 commit b18ae38
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec/unit/matrix-client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ describe("MatrixClient", function () {
// Disabled because now `startClient` makes a legit call to `/versions`
// And those tests are really unhappy about it... Not possible to figure
// out what a good resolution would look like
it("should transition ERROR -> CATCHUP after /sync if prev failed", async () => {
it.skip("should transition ERROR -> CATCHUP after /sync if prev failed", async () => {
const expectedStates: [string, string | null][] = [];
acceptKeepalives = false;
httpLookups = [];
Expand Down Expand Up @@ -1144,7 +1144,7 @@ describe("MatrixClient", function () {
await didSyncPromise;
});

it("should transition SYNCING -> ERROR after a failed /sync", async () => {
it.skip("should transition SYNCING -> ERROR after a failed /sync", async () => {
acceptKeepalives = false;
const expectedStates: [string, string | null][] = [];
httpLookups.push({
Expand All @@ -1169,7 +1169,7 @@ describe("MatrixClient", function () {
await didSyncPromise;
});

it("should transition ERROR -> SYNCING after /sync if prev failed", async () => {
it.skip("should transition ERROR -> SYNCING after /sync if prev failed", async () => {
const expectedStates: [string, string | null][] = [];
httpLookups.push({
method: "GET",
Expand Down Expand Up @@ -1203,7 +1203,7 @@ describe("MatrixClient", function () {
await didSyncPromise;
});

it("should transition ERROR -> ERROR if keepalive keeps failing", async () => {
it.skip("should transition ERROR -> ERROR if keepalive keeps failing", async () => {
acceptKeepalives = false;
const expectedStates: [string, string | null][] = [];
httpLookups.push({
Expand Down Expand Up @@ -1269,7 +1269,7 @@ describe("MatrixClient", function () {
expect(httpLookups.length).toBe(0);
});

it("should be able to peek into a room using peekInRoom", function () {});
it.skip("should be able to peek into a room using peekInRoom", function () {});
});

describe("getPresence", function () {
Expand Down

0 comments on commit b18ae38

Please sign in to comment.