This website requires JavaScript.
Explore
Help
Sign In
Steve-Dee-Designs
/
woocommerce
mirror of
https://github.com/woocommerce/woocommerce.git
Watch
1
Star
0
Fork
You've already forked woocommerce
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4716d7483e
woocommerce
/
plugins
/
woocommerce-blocks
/
tests
/
js
/
setup-after-env.ts
6 lines
103 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Add initial cart flow tests (https://github.com/woocommerce/woocommerce-blocks/pull/2678) * more setup configuration for rtl * move default state for cart out of reducer This also creates a file for default store states, it should make it easier to execute tests in various environments. * Make sure there’s a default object for cart line item row * set defaults for cartData * add fetchMock as a global in eslint config * add initial cart flow tests This is just to get the ball rolling, the cart block needs more tests * fix missing @wordpress/jest-console configs (because I overwrote the original configuration) * update test because of change in branch * switch import order * add globals.d.ts file to declare globals we use. This is a quick solution to prevent typescript linting warning about `fetchMock`. At some point we could also create a proper interface for it or import the types (if they exist) for the `jest-mock` package. The new `globals.d.ts` file is excluded from published builds.
2020-06-10 18:21:34 +00:00
/
*
*
*
External
dependencies
*
/
import
'@testing-library/jest-dom'
;
Include the types of Jest customer matchers for unit tests
2022-12-30 15:36:37 +00:00
import
'@wordpress/jest-console'
;