diff --git a/client/package.json b/client/package.json
index 7a08018..0107480 100644
--- a/client/package.json
+++ b/client/package.json
@@ -28,6 +28,7 @@
},
"scripts": {
"start": "react-scripts start",
+ "test": "react-scripts test",
"build": "cross-env CI=false react-scripts build",
"electron": "electron ."
},
diff --git a/client/src/App.js b/client/src/App.js
index 6d14652..9c26a2c 100644
--- a/client/src/App.js
+++ b/client/src/App.js
@@ -3,6 +3,7 @@ import "./App.css";
import Views from "./views/Views";
import { AppContext, ContextWrapper } from "./contexts/GlobalContext";
import { YamlContextWrapper } from "./contexts/YamlContext";
+import { WorkflowProvider } from "./contexts/WorkflowContext";
function CacheBootstrapper({ children }) {
const { resetFileState } = useContext(AppContext);
@@ -38,11 +39,13 @@ function App() {
return (