Skip to content

Commit 38afadd

Browse files
committed
Merge branch 'release-25.1' into 'main'
Release Merge 25.2 See merge request nwac/sdk-ts!86
2 parents 36d2afa + 857aacf commit 38afadd

File tree

15 files changed

+3608
-4973
lines changed

15 files changed

+3608
-4973
lines changed

.eslintrc.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import eslint from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
4+
export default tseslint.config(
5+
eslint.configs.recommended,
6+
tseslint.configs.recommended,
7+
{
8+
rules: {
9+
"@typescript-eslint/no-explicit-any": "off",
10+
}
11+
},
12+
);

integration-tests/slice.itest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ describe("Slicing", () => {
164164

165165
// NOTE: This test takes a long time to execute, since it must wait for slice creation
166166
// if you are in a rush, add a temporary skip here
167-
test.concurrent("should modify a slice", async () => {
167+
test.skip("should modify a slice", async () => {
168168
const random = Math.floor(Math.random() * 1000) + 1;
169169

170170
const slice = await client.slices.create(
@@ -235,7 +235,7 @@ describe("Slicing", () => {
235235

236236
// NOTE: This test takes a long time to execute, since it must wait for slice updates
237237
// if you are in a rush, add a temporary skip here
238-
test.concurrent("should attach device to slice and detach with all params", async () => {
238+
test.skip("should attach device to slice and detach with all params", async () => {
239239
const random = Math.floor(Math.random() * 1000) + 1;
240240

241241
const slice = await client.slices.create(
@@ -295,7 +295,7 @@ describe("Slicing", () => {
295295

296296
// NOTE: This test takes a long time to execute, since it must wait for slice updates
297297
// if you are in a rush, add a temporary skip here
298-
test.concurrent("should attach device to slice and detach with manadatory params", async () => {
298+
test.skip("should attach device to slice and detach with manadatory params", async () => {
299299
const random = Math.floor(Math.random() * 1000) + 1;
300300

301301
const slice = await client.slices.create(

0 commit comments

Comments
 (0)