Skip to content

Commit a338fea

Browse files
committed
fix: sort boards in testing-view and remove test scripts that don't work anyways
1 parent c6ed303 commit a338fea

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

backend/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"dev": "go run ./cmd --config ./cmd/dev-config.toml",
99
"dev:main": "go run ./cmd --config ./cmd/config.toml",
1010
"build": "go build -o bin/backend ./cmd",
11-
"build:ci": "go build",
12-
"test": "go test ./..."
11+
"build:ci": "go build"
1312
}
1413
}

frontend/testing-view/src/hooks/useTransformedBoards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function useTransformedBoards(
3131

3232
setTelemetryCatalog(transformedBoards.telemetryCatalog);
3333
setCommandsCatalog(transformedBoards.commandsCatalog);
34-
setBoards(Array.from(transformedBoards.boards));
34+
setBoards(Array.from(transformedBoards.boards).sort());
3535

3636
const hasTelemetryData =
3737
Object.keys(transformedBoards.telemetryCatalog).length > 0;

packet-sender/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"license": "MIT",
77
"scripts": {
88
"build": "go build -o packet-sender main.go",
9-
"build:ci": "go build",
10-
"test": "go test ./..."
9+
"build:ci": "go build"
1110
}
1211
}

0 commit comments

Comments
 (0)