@@ -589,7 +589,7 @@ describe("getProjectMetadata", () => {
589
589
describe ( "elements" , ( ) => {
590
590
it ( "passes basic sanity" , ( ) => {
591
591
const activitySource = `
592
- import { FormElementProps, FormElementRegistration } from "@vertigis/workflow/runtime ";
592
+ import { FormElementProps, FormElementRegistration } from "@vertigis/workflow";
593
593
import React from "react";
594
594
595
595
interface Props extends FormElementProps<string> {
@@ -677,7 +677,7 @@ describe("getProjectMetadata", () => {
677
677
678
678
it ( "includes elements with basic props interface" , ( ) => {
679
679
const activitySource = `
680
- import { FormElementProps, FormElementRegistration } from "@vertigis/workflow/runtime ";
680
+ import { FormElementProps, FormElementRegistration } from "@vertigis/workflow";
681
681
import React from "react";
682
682
683
683
interface Props extends FormElementProps<string> {}
@@ -718,7 +718,7 @@ describe("getProjectMetadata", () => {
718
718
719
719
it ( "throws error for invalid `component` value" , ( ) => {
720
720
const activitySource = `
721
- import { FormElementProps, FormElementRegistration } from "@vertigis/workflow/runtime ";
721
+ import { FormElementProps, FormElementRegistration } from "@vertigis/workflow";
722
722
723
723
const Foo = 42;
724
724
@@ -740,7 +740,7 @@ describe("getProjectMetadata", () => {
740
740
741
741
it ( "throws error for shorthand `id` expression" , ( ) => {
742
742
const activitySource = `
743
- import { FormElementProps, FormElementRegistration } from "@vertigis/workflow/runtime ";
743
+ import { FormElementProps, FormElementRegistration } from "@vertigis/workflow";
744
744
745
745
const Foo = () => null;
746
746
@@ -764,7 +764,7 @@ describe("getProjectMetadata", () => {
764
764
765
765
it ( "throws error for incorrect type of `id` value" , ( ) => {
766
766
const activitySource = `
767
- import { FormElementProps, FormElementRegistration } from "@vertigis/workflow/runtime ";
767
+ import { FormElementProps, FormElementRegistration } from "@vertigis/workflow";
768
768
769
769
const Foo = () => null;
770
770
0 commit comments