Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/tests packages api #3340

Merged
merged 16 commits into from
Oct 24, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test: Fixe indicateur.fetch.test
  • Loading branch information
farnoux committed Oct 23, 2024
commit c5ab44f2318008b9e99795e4731f46bc3eeb2b49
2 changes: 1 addition & 1 deletion packages/api/src/indicateurs/actions/source.fetch.test.ts
Original file line number Diff line number Diff line change
@@ -16,5 +16,5 @@ beforeAll(async () => {
test('Test selectSources', async () => {
const data = await selectSources(supabase);
expect(data).not.toBeNull();
expect(data).toHaveLength(4);
expect(data.length).toBeGreaterThan(1);
});
Loading