@prefecthq/prefect-ui-library
Version:
This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.
14 lines (13 loc) • 503 B
text/typescript
import { StateHistory } from '@/models/StateHistory'
import { MockFunction } from '@/services/Mocker'
export const randomFlowRunStateHistory: MockFunction<StateHistory, [Partial<StateHistory>?]> = function(overrides = {}) {
const state = this.create('state')
return new StateHistory({
stateType: state.type,
stateName: state.name,
countRuns: this.create('number'),
sumEstimatedLateness: this.create('number'),
sumEstimatedRunTime: this.create('number'),
...overrides,
})
}