Files
thedotmack--claude-mem/tests/plugin-scripts-line-endings.test.ts
wehub-resource-sync f9447f8e5f
CI / typecheck · build · test · bundle-size (push) Failing after 1s
CI / clean-room dependency closure smoke (push) Failing after 1s
CI / server-runtime e2e (docker · pg + valkey) (push) Failing after 2s
Deploy Install Scripts / deploy (push) Failing after 2s
Windows / build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:07:03 +08:00

32 lines
982 B
TypeScript

import { describe, it, expect } from 'bun:test';
import { readFileSync, existsSync } from 'fs';
import { join } from 'path';
const SCRIPTS_DIR = join(import.meta.dir, '..', 'plugin', 'scripts');
const SHEBANG_SCRIPTS = [
'mcp-server.cjs',
'worker-service.cjs',
'context-generator.cjs',
'bun-runner.js',
];
describe('plugin/scripts line endings (#1342)', () => {
for (const filename of SHEBANG_SCRIPTS) {
const filePath = join(SCRIPTS_DIR, filename);
it(`${filename} shebang line must not contain CRLF`, () => {
expect(existsSync(filePath)).toBe(true);
const content = readFileSync(filePath, 'binary');
const firstLine = content.split('\n')[0];
expect(firstLine.endsWith('\r')).toBe(false);
});
it(`${filename} must not contain any CRLF sequences`, () => {
expect(existsSync(filePath)).toBe(true);
const content = readFileSync(filePath, 'binary');
expect(content.includes('\r\n')).toBe(false);
});
}
});