如何运行单个测试或一组测试?
我已经在src / test.ts中尝试过(单次测试)
(我的家庭组件在app / pages / home中)
const context = require.context('./', true, /\home\.spec\.ts$/);
但它不起作用
我的意思是浏览器正在运行
但我已经
了0 specs, 0 failures
答案 0 :(得分:1)
您的测试由describe
和一个或多个it
组成,如此
describe('MyComponent', () => {
it('should ...', done => {
});
});
如果您想强制组,请使用fdescribe
和测试,请使用fit
fdescribe('Forcing MyComponent', () => {
it('should ...', done => {
});
});
describe('MyComponent', () => {
fit('forced should ...', done => {
});
});