(text, raw)
| 103 | } |
| 104 | |
| 105 | function assertNoRawHubBodySecrets(text, raw) { |
| 106 | assert.equal(text.includes(raw.nodeSecret), false, 'raw node_secret value must not be surfaced'); |
| 107 | assert.equal(text.includes(raw.bearer), false, 'raw Bearer token must not be surfaced'); |
| 108 | assert.equal(text.includes(raw.token), false, 'raw token field value must not be surfaced'); |
| 109 | assert.equal(text.includes(raw.envPath), false, 'raw .env path must not be surfaced'); |
| 110 | } |
| 111 | |
| 112 | async function runOneScheduledTick(schedule) { |
| 113 | const realSetTimeout = global.setTimeout; |
no outgoing calls
no test coverage detected