Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 748 Bytes

jest.md

File metadata and controls

30 lines (20 loc) · 748 Bytes

Jest

Mock Environment

References

Default: node

The test environment that will be used for testing. The default environment in Jest is a Node.js environment. If you are building a web app, you can use a browser-like environment through jsdom instead.

By adding a @jest-environment docblock at the top of the file, you can specify another environment to be used for all tests in that file:

/**
 * @jest-environment jsdom
 */

// ……

test('use jsdom in this test file', () => {
  const element = document.createElement('div');
  expect(element).not.toBeNull();
});

See the references above for more.