File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
OrchestrationOptions ,
7
7
} from "durable-functions" ;
8
8
import * as trigger from "./trigger" ;
9
- import { createOrchestrator , createEntityFunction } from "./testingUtils" ;
9
+ import { createOrchestrator , createEntityFunction } from "./util/ testingUtils" ;
10
10
import { app as azFuncApp } from "@azure/functions" ;
11
11
12
12
export function orchestration (
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import {
14
14
HistoryEventOptions ,
15
15
Orchestrator ,
16
16
OrchestratorStartedEvent ,
17
+ OrchestratorState ,
17
18
} from "../classes" ;
18
19
import { ReplaySchema } from "../replaySchema" ;
19
20
import * as uuidv1 from "uuid/v1" ;
Original file line number Diff line number Diff line change 1
1
import * as df from "../../src" ;
2
2
import { OrchestrationContext } from "durable-functions" ;
3
3
import { DurableHttpRequest } from "src/classes" ;
4
- import { createOrchestrator } from "../../src/testingUtils" ;
4
+ import { createOrchestrator } from "../../src/util/ testingUtils" ;
5
5
6
6
export class TestOrchestrations {
7
7
public static NotGenerator : any = createOrchestrator ( function * ( ) {
Original file line number Diff line number Diff line change 1
- import { createEntityFunction } from "../../src/testingUtils" ;
1
+ import { createEntityFunction } from "../../src/util/ testingUtils" ;
2
2
3
3
export class TestEntities {
4
4
public static StringStore = createEntityFunction < string > ( ( context ) : void => {
You can’t perform that action at this time.
0 commit comments