UNPKG

@fleetbase/ember-core

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

15 lines (13 loc) 281 B
export default class MockTask { isRunning = false; isIdel = true; fn = function () {}; perform = function () { this.isRunning = true; this.fn(...arguments); this.isRunning = false; }; constructor(fn) { this.fn = fn; } }