MCPcopy Create free account
hub / github.com/GCWing/BitFun / auditIntegrationTest

Function auditIntegrationTest

scripts/i18n-contract.test.mjs:46–53  ·  view source on GitHub ↗
(name, optionsOrFn, maybeFn)

Source from the content-addressed store, hash-verified

44// CI runs one full i18n:audit immediately after this file; keep mutation-heavy
45// audit integration cases in the default profile without paying that cost twice.
46function auditIntegrationTest(name, optionsOrFn, maybeFn) {
47 const runner = skipAuditIntegrationTests ? test.skip : test;
48 if (typeof optionsOrFn === 'function') {
49 return runner(name, optionsOrFn);
50 }
51
52 return runner(name, optionsOrFn, maybeFn);
53}
54
55function withTemporaryTextFile(relativePath, content, callback) {
56 const absolutePath = path.join(root, relativePath);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected