chore: CI fix format

This commit is contained in:
Ralph Khreish
2025-09-23 20:27:41 +02:00
parent 1b7c9637a5
commit d691cbb7ae
2 changed files with 4 additions and 12 deletions

View File

@@ -103,14 +103,10 @@ describe('Roo Files Inclusion in Package', () => {
test('source Roo files exist in assets directory', () => { test('source Roo files exist in assets directory', () => {
// Verify that the source files for Roo integration exist // Verify that the source files for Roo integration exist
expect( expect(
fs.existsSync( fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roo'))
path.join(process.cwd(), 'assets', 'roocode', '.roo')
)
).toBe(true); ).toBe(true);
expect( expect(
fs.existsSync( fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roomodes'))
path.join(process.cwd(), 'assets', 'roocode', '.roomodes')
)
).toBe(true); ).toBe(true);
}); });
}); });

View File

@@ -89,14 +89,10 @@ describe('Rules Files Inclusion in Package', () => {
test('source Roo files exist in assets directory', () => { test('source Roo files exist in assets directory', () => {
// Verify that the source files for Roo integration exist // Verify that the source files for Roo integration exist
expect( expect(
fs.existsSync( fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roo'))
path.join(process.cwd(), 'assets', 'roocode', '.roo')
)
).toBe(true); ).toBe(true);
expect( expect(
fs.existsSync( fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roomodes'))
path.join(process.cwd(), 'assets', 'roocode', '.roomodes')
)
).toBe(true); ).toBe(true);
}); });
}); });