Currently, tests are split into browser (*.browser.spec.ts) and node (*.spec.ts) tests. This introduces tests duplication and mainly it resolves in small coverage in browsers.
Using isomorphic testing leads to writing only one set of tests that is shared between all tested environments.
Currently, tests are split into browser (
*.browser.spec.ts) and node (*.spec.ts) tests. This introduces tests duplication and mainly it resolves in small coverage in browsers.Using isomorphic testing leads to writing only one set of tests that is shared between all tested environments.