fix formatting

This commit is contained in:
Joe Danziger
2025-06-05 10:43:19 -04:00
parent 948203ed7f
commit 22b6e6217e
3 changed files with 3 additions and 18 deletions

View File

@@ -5,12 +5,7 @@ describe('Cline Profile Initialization Functionality', () => {
let clineProfileContent;
beforeAll(() => {
const clineJsPath = path.join(
process.cwd(),
'src',
'profiles',
'cline.js'
);
const clineJsPath = path.join(process.cwd(), 'src', 'profiles', 'cline.js');
clineProfileContent = fs.readFileSync(clineJsPath, 'utf8');
});

View File

@@ -5,12 +5,7 @@ describe('Codex Profile Initialization Functionality', () => {
let codexProfileContent;
beforeAll(() => {
const codexJsPath = path.join(
process.cwd(),
'src',
'profiles',
'codex.js'
);
const codexJsPath = path.join(process.cwd(), 'src', 'profiles', 'codex.js');
codexProfileContent = fs.readFileSync(codexJsPath, 'utf8');
});

View File

@@ -5,12 +5,7 @@ describe('Trae Profile Initialization Functionality', () => {
let traeProfileContent;
beforeAll(() => {
const traeJsPath = path.join(
process.cwd(),
'src',
'profiles',
'trae.js'
);
const traeJsPath = path.join(process.cwd(), 'src', 'profiles', 'trae.js');
traeProfileContent = fs.readFileSync(traeJsPath, 'utf8');
});