deno.land / x / xstate@xstate@4.33.6 / test / definition.test.ts
1234567891011121314151617import { Machine } from '../src';
describe('definition', () => { it('should provide invoke definitions', () => { const invokeMachine = Machine({ id: 'invoke', invoke: [{ src: 'foo' }, { src: 'bar' }], initial: 'idle', states: { idle: {} } });
expect(invokeMachine.definition.invoke.length).toBe(2); });});
Version Info