()
| 7 | const defaultConfigPath = path.join(defaultThemePath, 'config.stencil.json'); |
| 8 | const defaultSecretsPath = path.join(defaultThemePath, 'secrets.stencil.json'); |
| 9 | const getGeneralConfig = () => ({ |
| 10 | customLayouts: { |
| 11 | brand: { |
| 12 | a: 'aaaa', |
| 13 | }, |
| 14 | category: {}, |
| 15 | page: { |
| 16 | b: 'bbbb', |
| 17 | }, |
| 18 | product: {}, |
| 19 | }, |
| 20 | apiHost: 'https://api.bigcommerce.com', |
| 21 | normalStoreUrl: 'https://url-from-stencilConfig.mybigcommerce.com', |
| 22 | port: 3001, |
| 23 | }); |
| 24 | const getSecretsConfig = () => ({ |
| 25 | accessToken: 'accessToken_from_stencilConfig', |
| 26 | githubToken: 'githubToken_1234567890', |
no outgoing calls
no test coverage detected