Skip to content

Commit a84e60d

Browse files
committed
feat: Integrate path audit verification script into the test workflow and update context documentation.
1 parent 1af808b commit a84e60d

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

docs/context.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
2. Migrate Documentation to `docs/` (Done).
1010
3. Implement robust Arc Browser Single-Instance logic (Done).
1111
4. Standardize Source Code to `src/` (Done).
12+
5. Implement and integrate path audit verification (`tests/audit_paths.js`) (Done).
1213

1314

1415
## Recent Changes
@@ -18,4 +19,4 @@
1819
- Integrated ESLint into the build pipeline.
1920

2021
## Active Questions
21-
- Will the `src/` move break `manifest.json` paths? (Mitigation: `tests/audit_paths.js` planned).
22+
- (Empty)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
"lint": "eslint .",
77
"lint:fix": "eslint . --fix",
88
"format": "prettier --write .",
9-
"test": "npm run test:unit && npm run test:integration",
9+
"test": "npm run test:audit && npm run test:unit && npm run test:integration",
1010
"test:unit": "node tests/run_tests.js",
11-
"test:integration": "node tests/integration_sidepanel.js"
11+
"test:integration": "node tests/integration_sidepanel.js",
12+
"test:audit": "node tests/audit_paths.js"
1213
},
1314
"author": "Maurizio Delmonte",
1415
"license": "MIT",

0 commit comments

Comments
 (0)