iching-broker-level1/node_modules/jest-leak-detector
Christopher Hase 323cea883d
All checks were successful
ci / build (push) Successful in 1m14s
unit tests part 3
2025-03-31 14:27:20 +02:00
..
build unit tests part 3 2025-03-31 14:27:20 +02:00
LICENSE unit tests part 3 2025-03-31 14:27:20 +02:00
package.json unit tests part 3 2025-03-31 14:27:20 +02:00
README.md unit tests part 3 2025-03-31 14:27:20 +02:00

jest-leak-detector

Module for verifying whether an object has been garbage collected or not.

Internally creates a weak reference to the object, and forces garbage collection to happen. If the reference is gone, it meant no one else was pointing to the object.

Example

(async function () {
  let reference = {};
  let isLeaking;

  const detector = new LeakDetector(reference);

  // Reference is held in memory.
  isLeaking = await detector.isLeaking();
  console.log(isLeaking); // true

  // We destroy the only reference to the object.
  reference = null;

  // Reference is gone.
  isLeaking = await detector.isLeaking();
  console.log(isLeaking); // false
})();