Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Michsior14 committed Jan 26, 2023
1 parent d883dd2 commit 0da50fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions website/docs/getting-started/options.md
Expand Up @@ -92,7 +92,7 @@ module.exports = {
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$',
},
]
],
},
};
```
Expand All @@ -112,8 +112,8 @@ const jestConfig: Config = {
'jest-preset-angular',
{
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$'
}
stringifyContentPathRegex: '\\.(html|svg)$',
},
],
},
};
Expand Down
12 changes: 6 additions & 6 deletions website/docs/getting-started/presets.md
Expand Up @@ -72,11 +72,11 @@ module.exports = {
// [...]
transform: {
'^.+\\.(ts|js|mjs|html|svg)$': [
'jest-preset-angular',
'jest-preset-angular',
{
...defaultTransformerOptions,
// [...your overriden options]
}
// [...your overriden options]
},
],
},
};
Expand All @@ -90,11 +90,11 @@ const jestConfig: Config = {
// [...]
transform: {
'^.+\\.(ts|js|mjs|html|svg)$': [
'jest-preset-angular',
'jest-preset-angular',
{
...presets.defaultTransformerOptions,
// [...your overriden options]
}
// [...your overriden options]
},
],
},
};
Expand Down

0 comments on commit 0da50fc

Please sign in to comment.