Skip to content

Instantly share code, notes, and snippets.

@viT-1
Last active April 9, 2023 20:50
Show Gist options
  • Save viT-1/85eda8124b9258822c3a38d261d08508 to your computer and use it in GitHub Desktop.
Save viT-1/85eda8124b9258822c3a38d261d08508 to your computer and use it in GitHub Desktop.
#gist-bookmark #jest #test #esm #alias #js

Jest added to project with aliasing and eslint rules. Jest is not supported esm & esm mocks yet, that's why we are forced to use jest-esm-transformer (Babel transform under the hood test modules & *.spec scripts to CommonJs). Without transform configuration we have error: SyntaxError: Cannot use import statement outside a module.

Nowadays (2022-01-12) we can esm without Babel only by ts-jest?

No! ts-jest uses Babel too and is only needed to catch additional type errors.

Read more:

@viT-1
Copy link
Author

viT-1 commented Jan 12, 2022

All columns 100% except Func coverage, which is not 100%. Eslint no-empty-function should prevent this situation.
But how to code es5 static constructors?
Jest is not able to verify the empty function, because anonymous function is always created with new reference.

How to read Test Coverage report generated using Jest.

@viT-1
Copy link
Author

viT-1 commented Jan 13, 2022

100% Func coverage is fixed by migrating from function to Object.

@viT-1
Copy link
Author

viT-1 commented Jan 19, 2022

esm for Jest (also with Babel), classic way with @babel/preset-env solve import keyword errors:
package.json > scripts:
"test": "set NODE_ENV=envJest&&node -r esm ./node_modules/jest/bin/jest.js --runInBand --no-cache"

babel.config.json:

{
	"env": {
		"envJest": {
			"presets": ["@babel/preset-env"]
		}
	}
}

@viT-1
Copy link
Author

viT-1 commented Jan 21, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment