mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-02 11:22:23 +00:00
test: fix Windows path separator failure in atCommandUtils.test.ts
This commit is contained in:
@@ -69,7 +69,7 @@ describe('atCommandUtils', () => {
|
||||
expect(result.status).toBe('resolved');
|
||||
if (result.status === 'resolved') {
|
||||
expect(result.resolved.absolutePath).toBe(absolutePath);
|
||||
expect(result.resolved.relativePath).toBe('src/index.ts');
|
||||
expect(result.resolved.relativePath).toBe(path.join('src', 'index.ts'));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user