Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Strift committed Feb 11, 2025
1 parent 74db777 commit e12ce25
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/search_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -586,18 +586,18 @@ void main() {
expect(
res.hits,
everyElement(
isA<MeiliDocumentContainer<Map<String, dynamic>>>()
.having(
(p0) => p0.parsed,
'parsed',
isNotNull,
),
isA<MeiliDocumentContainer<Map<String, dynamic>>>().having(
(p0) => p0.parsed,
'parsed',
isNotNull,
),
),
);
});
}, skip: openAiKeyValue == null || openAiKeyValue.isEmpty
? "Requires OPEN_AI_API_KEY environment variable"
: null);
},
skip: openAiKeyValue == null || openAiKeyValue.isEmpty
? "Requires OPEN_AI_API_KEY environment variable"
: null);

group('Embedders', () {
group(
Expand Down

0 comments on commit e12ce25

Please sign in to comment.