MCPcopy Create free account
hub / github.com/GTJasonMK/lessAI / assertNotIncludes

Function assertNotIncludes

scripts/test-helpers.mjs:12–14  ·  view source on GitHub ↗
(text, snippet)

Source from the content-addressed store, hash-verified

10}
11
12export function assertNotIncludes(text, snippet) {
13 assert.ok(!text.includes(snippet), `期望内容不包含:${snippet}`);
14}
15
16export function assertMatches(text, pattern, message) {
17 assert.ok(pattern.test(text), message);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected