jest.config.js
module.exports = {
setupFiles: ['<rootDir>/script/test-setup.js'],
}
test-setup.js
const noop = () => {};
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });
Go to list of users who liked
More than 5 years have passed since last update.
module.exports = {
setupFiles: ['<rootDir>/script/test-setup.js'],
}
const noop = () => {};
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });
Register as a new user and use Qiita more conveniently
Go to list of users who liked