Skip to content

Commit

Permalink
fix(workspace): fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Aug 26, 2024
1 parent 29e5b54 commit 7dd0ac2
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {UserFlowContext, UserFlowInteractionsFn, UserFlowProvider} from '@push-based/user-flow';

const interactions: UserFlowInteractionsFn = async (ctx: UserFlowContext): Promise<any> => {
const interactions = async (ctx): Promise<any> => {
const { page, flow, browser, collectOptions } = ctx;
const { url } = collectOptions;

Expand Down Expand Up @@ -59,7 +57,7 @@ const interactions: UserFlowInteractionsFn = async (ctx: UserFlowContext): Promi
});
};

const userFlowProvider: UserFlowProvider = {
const userFlowProvider = {
flowOptions: {name: '☕ Order Coffee ☕'},
interactions
};
Expand Down

0 comments on commit 7dd0ac2

Please sign in to comment.