diff --git a/ops/v1772-fix-tests.mjs b/ops/v1772-fix-tests.mjs new file mode 100644 index 0000000..7ed598e --- /dev/null +++ b/ops/v1772-fix-tests.mjs @@ -0,0 +1,8 @@ +import fs from 'node:fs'; +for(const p of ['tests/static-security.mjs','tests/release-check.mjs','tests/app.spec.mjs']){ + let s=fs.readFileSync(p,'utf8'); + s=s.split("const VERSION = '17.7.1'").join("const VERSION = '17.7.2'"); + s=s.split("version).toBe('17.7.1')").join("version).toBe('17.7.2')"); + fs.writeFileSync(p,s); +} +console.log('v17.7.2 stale test markers fixed');