Lines Matching refs:core
16 import Core from './core';
18 const core = Core.getInstance();
21 return Reflect.has(core, 'describe') ? core.describe(desc, func) : (desc, func) => { };
24 return Reflect.has(core, 'it') ? core.it(desc, filter, func) : (desc, filter, func) => { };
27 return Reflect.has(core, 'beforeItSpecified') ? core.beforeItSpecified(itDescs, func) : (itDescs, func) => { };
31 return Reflect.has(core, 'afterItSpecified') ? core.afterItSpecified(itDescs, func) : (itDescs, func) => { };
34 return Reflect.has(core, 'beforeEach') ? core.beforeEach(func) : (func) => { };
37 return Reflect.has(core, 'afterEach') ? core.afterEach(func) : (func) => { };
40 return Reflect.has(core, 'beforeAll') ? core.beforeAll(func) : (func) => { };
43 return Reflect.has(core, 'afterAll') ? core.afterAll(func) : (func) => { };
46 return Reflect.has(core, 'expect') ? core.expect(actualValue) : (actualValue) => { };
50 return Reflect.has(core, 'xdescribe') ? core.xdescribe(desc, func, null) : (desc, func, reason) => { };
54 return Reflect.has(core, 'xdescribe') ? core.xdescribe(desc, func, reason) : (desc, func, reason) => { };
58 return Reflect.has(core, 'xit') ? core.xit(desc, filter, func, null) : (desc, filter, func, reason) => { };
62 return Reflect.has(core, 'xit') ? core.xit(desc, filter, func, reason) : (desc, filter, func, reason) => { };