Skip to content

Commit e4dbb44

Browse files
committed
Accessibility Tests
1 parent b798f00 commit e4dbb44

21 files changed

Lines changed: 383 additions & 334 deletions

.cargo/audit.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ ignore = [
1313
"RUSTSEC-2025-0134",
1414
# time: DoS via stack exhaustion — transitive dep via serde_with, pinned by soroban-sdk 22.0.0
1515
"RUSTSEC-2026-0009",
16+
# libcrux-poly1305: CVSS 4.0 parsing issue in advisory tooling; tracked upstream
17+
"RUSTSEC-2026-0073",
1618
]

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
NODE_VERSION: '18.x'
11-
RUST_VERSION: '1.75.0'
11+
RUST_VERSION: 'stable'
1212

1313
jobs:
1414
lint:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Cargo.lock
2525
# TypeScript
2626
**/node_modules/
2727
**/dist/
28+
**/.jest-cache/
2829
npm-debug.log
2930
yarn-error.log
3031

api/jest.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ module.exports = {
1414
],
1515
coverageDirectory: 'coverage',
1616
coverageReporters: ['text', 'lcov', 'html'],
17+
cacheDirectory: '<rootDir>/.jest-cache',
1718
setupFilesAfterEnv: ['<rootDir>/src/tests/setup.ts'],
1819
testTimeout: 10000,
19-
moduleNameMapping: {
20+
moduleNameMapper: {
2021
'^@/(.*)$': '<rootDir>/src/$1',
2122
},
2223
};

0 commit comments

Comments
 (0)