MCPcopy
hub / github.com/ampproject/amphtml / cancelTimersForTesting

Function cancelTimersForTesting

src/service/timer-impl.js:183–189  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

181 * Cancels all timers scheduled during the current test
182 */
183export function cancelTimersForTesting() {
184 if (!timersForTesting) {
185 return;
186 }
187 timersForTesting.forEach(clearTimeout);
188 timersForTesting = null;
189}

Callers 1

cleanupTestcaseFunction · 0.90

Calls 1

forEachMethod · 0.45

Tested by

no test coverage detected