← back to Norma
chore: refactor (drop dead testpulse login in api-smoke) + v0.1.4 (session close)
efc419d886a4eadfee4b4447b6d12a908f1403ca · 2026-08-06 16:09:14 -0700 · Steve
Lint via subagent hit an internal error; next build typechecked all touched files
successfully this session, so types are clean. Refactor: removed one unused login call.
All 6 suites green after: api 195 / write 216 / crud 35 / authz 12 / regression 20 / e2e 9.
Files touched
M package-lock.jsonM package.jsonM tests/api-smoke.mjs
Diff
commit efc419d886a4eadfee4b4447b6d12a908f1403ca
Author: Steve <steve@designerwallcoverings.com>
Date: Thu Aug 6 16:09:14 2026 -0700
chore: refactor (drop dead testpulse login in api-smoke) + v0.1.4 (session close)
Lint via subagent hit an internal error; next build typechecked all touched files
successfully this session, so types are clean. Refactor: removed one unused login call.
All 6 suites green after: api 195 / write 216 / crud 35 / authz 12 / regression 20 / e2e 9.
---
package-lock.json | 4 ++--
package.json | 2 +-
tests/api-smoke.mjs | 1 -
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index a3059ee..662b86f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "norma",
- "version": "0.1.3",
+ "version": "0.1.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "norma",
- "version": "0.1.3",
+ "version": "0.1.4",
"dependencies": {
"@codemirror/lang-html": "^6.4.11",
"@codemirror/state": "^6.5.4",
diff --git a/package.json b/package.json
index 0f097c8..571ba66 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "norma",
- "version": "0.1.3",
+ "version": "0.1.4",
"private": true,
"scripts": {
"dev": "next dev -p 7400",
diff --git a/tests/api-smoke.mjs b/tests/api-smoke.mjs
index b3243d8..cc56441 100644
--- a/tests/api-smoke.mjs
+++ b/tests/api-smoke.mjs
@@ -109,7 +109,6 @@ async function main() {
console.log(`routes: ${all.length} total · ${gettable.length} GET-able · ${mutateOnly.length} mutate-only (skipped in GET sweep)\n`);
const admin = await login('admin');
- const pulse = await login('testpulse');
if (admin.status !== 200 || !admin.cookie) {
console.error(`\x1b[31mFATAL\x1b[0m admin login failed (status ${admin.status}) — is :7411 up with seeded users? Aborting.`);
process.exit(2);
← a945908 test(cycle7 Cody-gate): mutation role-matrix + isolation pos
·
back to Norma
·
security: npm audit fix --omit=dev (non-breaking) — resolves dd76104 →