Skip to content

Commit

Permalink
Temporarily disable build check for background/utterance recordings
Browse files Browse the repository at this point in the history
  • Loading branch information
kycarr committed Feb 18, 2021
1 parent 15dbf65 commit 02721b7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions client/src/pages/setup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,21 +191,21 @@ function SetupPage(props: { search: { i?: string } }): JSX.Element {
}
});

const isBuildReady =
mentorFilled && idleRecorded && requiredSubjectsRecorded;
// const isBuildReady =
// mentorFilled && idleRecorded && requiredSubjectsRecorded;
_slides.push(
Slide(
mentor.isBuilt,
isBuildReady ? (
<BuildMentorSlide
key="build"
classes={classes}
mentor={mentor}
onUpdated={loadMentor}
/>
) : (
<BuildErrorSlide key="build-error" classes={classes} />
)
// isBuildReady ? (
<BuildMentorSlide
key="build"
classes={classes}
mentor={mentor}
onUpdated={loadMentor}
/>
// ) : (
// <BuildErrorSlide key="build-error" classes={classes} />
// )
)
);

Expand Down
4 changes: 2 additions & 2 deletions cypress/cypress/integration/setup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ describe("Setup", () => {
cy.get("#incomplete-questions").contains("Unrecorded (2)");
});

it.skip("shows repeat after me questions slide", () => {
it("shows repeat after me questions slide", () => {
cySetup(cy);
cyMockLogin();
cyInterceptGraphQL(cy, [
Expand Down Expand Up @@ -442,7 +442,7 @@ describe("Setup", () => {
cy.get("#incomplete-questions").contains("Unrecorded (0)");
});

it("shows build mentor error slide if setup isn't complete", () => {
it.skip("shows build mentor error slide if setup isn't complete", () => {
cySetup(cy);
cyMockLogin();
cyInterceptGraphQL(cy, [
Expand Down

0 comments on commit 02721b7

Please sign in to comment.