Jest - Issues

https://www.notion.so/Jest-Issues-831d928ced3b451e9d2c8a264ada0f7e

Configurations for DOM Support

Use document object and methods like document.querySelectorAll

_setup.ts

1
import "jsdom-global/register";

jest.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
  verbose: true,
  transform: {
    ".(ts|tsx)": "<rootdir>/node_modules/ts-jest/preprocessor.js",
    ".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
  },
  testEnvironment: "node",
  testRegex: "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
  setupTestFrameworkScriptFile: "./test/_setup.ts",
  moduleFileExtensions: ["ts", "tsx", "js"],
  coveragePathIgnorePatterns: ["/node_modules/", "/test/", "src/index.ts"],
  coverageThreshold: {
    global: {
      branches: 0,
      functions: 0,
      lines: 0,
      statements: 0,
    },
  },
  collectCoverageFrom: ["src/**/*.{js,ts,tsx}"],
};

UT Example for Promise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ut passed requires `done` called
it("should return a promise with callback and title", done => {
  confirm("Promise confirm").then(() =&gt; {
    done();
  });
  document.querySelectorAll<htmlelement>(".btn")[1].click();
});

// reject promise
it("test reject promise", async () => {
  // do not use `Promise.reject`, because returns Promise immediately
  const mockP = jest.fn(() => Promise.reject("err"));
  await delay(1, mockP()).catch(() => {
    // nothing
  });
  expect(mockP.mock.calls.length).toBe(1);
});
This post is licensed under CC BY 4.0 by the author.