Skip to content

Commit

Permalink
fix reference to tipi and repoint to svi
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinlan Emily Hu committed Sep 29, 2023
1 parent 95395bd commit ae34a7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions surveys/SVI/SVI.cy.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { TIPI } from "../../src/index";
import { SVI } from "../../src/index";

const dummy = {
set(response) {},
Expand All @@ -8,7 +8,7 @@ const dummy = {
describe("SuperSpecialSurvey", () => {
it("completes", () => {
cy.spy(dummy, "set").as("callback");
cy.mount(<TIPI onComplete={dummy.set} />);
cy.mount(<SVI onComplete={dummy.set} />);

// Instrumental Outcome
cy.get('[data-name="Instrumental Outcome 1"] input[value="5"]').click({
Expand Down

0 comments on commit ae34a7d

Please sign in to comment.