Stranger6667 / css-inline

High-performance library for inlining CSS into HTML 'style' attributes
https://css-inline.org/
MIT License
232 stars 29 forks source link

Open Handle #370

Open BijanRegmi opened 3 months ago

BijanRegmi commented 3 months ago

While running tests with jest, it detects open handle.

└──> $ npm run test

> css-inline@1.0.0 test
> jest --detectOpenHandles --config ./jest.config.js

 PASS  ./test.spec.js (10.133 s)
  css-inline
    ✓ nop (6 ms)

Test Suites: 1 passed, 1 total
Tests:       1 passed, 1 total
Snapshots:   0 total
Time:        10.173 s, estimated 11 s
Ran all test suites.

Jest has detected the following 1 open handle potentially keeping Jest from exiting:

  ●  CustomGC

    > 1 | const { inline } = require("@css-inline/css-inline");
        |                    ^
      2 |
      3 | describe("css-inline", () => {
      4 |     jest.setTimeout(30000);

      at Runtime._loadModule (node_modules/jest-runtime/build/index.js:1018:29)
      at Object.<anonymous> (node_modules/@css-inline/css-inline/index.js:190:31)
      at Object.require (test.spec.js:1:20)

I have linked minimal reproduction repo here