Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
name: Run Tests
runs-on: ubuntu-latest

env:
DATABASE_URL: "sqlite::memory:"

defaults:
run:
working-directory: ./Cyrano
Expand Down
22 changes: 1 addition & 21 deletions Cyrano/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -303,4 +303,6 @@ export class MichiganCitationValidator {
}
return result;
}
}

export const michiganCitationValidator = new MichiganCitationValidator();
1 change: 0 additions & 1 deletion Cyrano/tests/integration/attorney-verification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe('Attorney Verification Integration (Track Delta)', () => {
const review = requireAttorneyVerification(
'work-product-123',
'court_filing',
true,
'Original AI-generated content'
);

Expand Down
2 changes: 1 addition & 1 deletion Cyrano/tests/tools/document-drafter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,4 @@ describe('Document Drafter Tool', () => {
expect(result).toBeDefined();
});
});
;
});
Loading