Skip to content

Commit

Permalink
fix: reverts change to mock test answers
Browse files Browse the repository at this point in the history
  • Loading branch information
NickTolhurst26 committed Sep 11, 2020
1 parent 506be68 commit ea9c76e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/stencil-init.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ const getStencilConfig = () => ({
accessToken: "accessToken_from_stencilConfig",
githubToken: "githubToken_1234567890",
});
const getAnswers = () => ({
normalStoreUrl: "https://url-from-answers.mybigcommerce.com",
port: 3003,
accessToken: "accessToken_from_answers",
});
const getCliOptions = () => ({
url: "https://url-from-cli-options.mybigcommerce.com",
port: 3002,
token: "accessToken_from_CLI_options",
});
const getAnswers = () => ({
normalStoreUrl: "https://url-from-prompt.mybigcommerce.com",
port: 3003,
accessToken: "accessToken_from_prompt",
});

afterEach(() => jest.restoreAllMocks());

Expand Down

0 comments on commit ea9c76e

Please sign in to comment.