There was an error while loading. Please reload this page.
给一个组件编写单元测试分成以下步骤:
devui/tree/__tests__/tree.spec.ts
describe('tree', () => { ... })
it('tree should render correctly', () => { ... })
expect(wrapper.classes()).toContain('devui-tree')
lerna exec --scope vue-devui yarn test --findRelatedTests devui/button
或者lerna exec --scope vue-devui yarn test --testMatch **/button.spec.ts
lerna exec --scope vue-devui yarn test --testMatch **/button.spec.ts