Skip to content

Commit 808ecd3

Browse files
committed
Merge branch 'release-fixes' into 'main'
Skipping Congestion insights tests due to simulator issues See merge request nwac/sdk-ts!110
2 parents 4c31d44 + 09d0ed3 commit 808ecd3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

integration-tests/congestionInsights.itest.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe("Congestion Insights", () => {
2424
const expirationDate = new Date(Date.now() + 5 * 60 * 1000);
2525
expirationDate.setMilliseconds(0);
2626

27-
it("can create subscription for congestion insights", async () => {
27+
it.skip("can create subscription for congestion insights", async () => {
2828
const notificationId: string = uuid();
2929
const subscription = await client.insights.subscribeToCongestionInfo(
3030
device,
@@ -62,7 +62,7 @@ describe("Congestion Insights", () => {
6262

6363
},20 * 1000);
6464

65-
it("can create subscription for congestion insights without auth token", async () => {
65+
it.skip("can create subscription for congestion insights without auth token", async () => {
6666
const notificationId: string = uuid();
6767
const subscription = await client.insights.subscribeToCongestionInfo(
6868
device,
@@ -100,7 +100,7 @@ describe("Congestion Insights", () => {
100100

101101
},20 * 1000);
102102

103-
it("can get a subscription by id", async () => {
103+
it.skip("can get a subscription by id", async () => {
104104
const subscription = await client.insights.subscribeToCongestionInfo(
105105
device,
106106
expirationDate,
@@ -118,7 +118,7 @@ describe("Congestion Insights", () => {
118118
await subscription.delete();
119119
});
120120

121-
it("can get subscription start and expiration", async () => {
121+
it.skip("can get subscription start and expiration", async () => {
122122
const subscription = await client.insights.subscribeToCongestionInfo(
123123
device,
124124
expirationDate,
@@ -133,7 +133,7 @@ describe("Congestion Insights", () => {
133133
await subscription.delete();
134134
});
135135

136-
it("can get start and expiration from selected subscription", async () => {
136+
it.skip("can get start and expiration from selected subscription", async () => {
137137
const subscription = await client.insights.subscribeToCongestionInfo(
138138
device,
139139
expirationDate,
@@ -155,7 +155,7 @@ describe("Congestion Insights", () => {
155155
await subscription.delete();
156156
});
157157

158-
it("can get a list of subscriptions", async () => {
158+
it.skip("can get a list of subscriptions", async () => {
159159
const subscription = await client.insights.subscribeToCongestionInfo(
160160
device,
161161
expirationDate,
@@ -176,7 +176,7 @@ describe("Congestion Insights", () => {
176176
await subscription.delete();
177177
});
178178

179-
it("should fetch current congestion level relevant to a given device", async () => {
179+
it.skip("should fetch current congestion level relevant to a given device", async () => {
180180
const subscription = await client.insights.subscribeToCongestionInfo(
181181
device,
182182
expirationDate,
@@ -203,7 +203,7 @@ describe("Congestion Insights", () => {
203203
await subscription.delete();
204204
});
205205

206-
it("should fetch prediction/historical data between two time stamps:", async () => {
206+
it.skip("should fetch prediction/historical data between two time stamps:", async () => {
207207
const subscription = await client.insights.subscribeToCongestionInfo(
208208
device,
209209
expirationDate,

0 commit comments

Comments
 (0)