-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
738ff99
commit 65d8375
Showing
11 changed files
with
382 additions
and
751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
268 changes: 0 additions & 268 deletions
268
editor.planx.uk/src/pages/FlowEditor/lib/__tests__/advancedAutomations.test.ts
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
editor.planx.uk/src/pages/FlowEditor/lib/__tests__/automations.blanks.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Store, useStore } from "../store"; | ||
|
||
const { getState, setState } = useStore; | ||
const { resetPreview } = getState(); | ||
|
||
describe("Auto-answering blanks", () => { | ||
beforeEach(() => { | ||
resetPreview(); | ||
setState({ flow }); | ||
}); | ||
|
||
test.todo("TODO"); | ||
}) | ||
|
||
const flow: Store.Flow = {}; |
Oops, something went wrong.