feat: add oauth with remote server (#1178)

This commit is contained in:
Ralph Khreish
2025-09-04 20:45:41 +02:00
committed by GitHub
parent 19ec52181d
commit 6dd910fc52
37 changed files with 2340 additions and 7147 deletions

View File

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