fix formatting
This commit is contained in:
@@ -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');
|
||||
});
|
||||
|
||||
|
||||
@@ -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');
|
||||
});
|
||||
|
||||
|
||||
@@ -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');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user