mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-22 11:13:45 +00:00
- Bump `eslint`, `typescript-eslint` and `eslint-plugin-unicorn` (to v68), and configure the rules added in unicorn v66/v67/v68. - Remove `eslint-plugin-github` and its workarounds (rules, type stub, pnpm peer override, in-code `eslint-disable` comments); the rules worth keeping are covered by `unicorn` equivalents. - Apply the resulting fixes and autofixes across the JS codebase. _Prepared with Claude (Opus 4.8)._ --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
31 lines
1022 B
TypeScript
31 lines
1022 B
TypeScript
// there could be different "testing" concepts, for example: backend's "setting.IsInTesting"
|
|
// even if backend is in testing mode, frontend could be complied in production mode
|
|
// so this function only checks if the frontend is in unit testing mode (usually from *.test.ts files)
|
|
export function isInFrontendUnitTest() {
|
|
return import.meta.env.MODE === 'test';
|
|
}
|
|
|
|
/** strip common indentation from a string and trim it */
|
|
export function dedent(str: string) {
|
|
const match = str.match(/^[ \t]*(?=\S)/gm);
|
|
if (!match) return str;
|
|
|
|
let minIndent = Infinity;
|
|
for (const indent of match) {
|
|
minIndent = Math.min(minIndent, indent.length);
|
|
}
|
|
if (minIndent === 0 || minIndent === Infinity) {
|
|
return str;
|
|
}
|
|
|
|
return str.replace(new RegExp(`^[ \\t]{${minIndent}}`, 'gm'), '').trim();
|
|
}
|
|
|
|
export function normalizeTestHtml(s: string) {
|
|
const lines = s.replace(/>\s+</g, '>\n<').trim().split('\n');
|
|
for (let i = 0; i < lines.length; i++) {
|
|
lines[i] = lines[i].trim();
|
|
}
|
|
return lines.join('\n');
|
|
}
|