Skip to content
Merged
Show file tree
Hide file tree
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 for warning level
  • Loading branch information
denrase committed Jan 2, 2024
commit 6c65e57d6abd13418fb15039f75a60aa74ab52a5
3 changes: 3 additions & 0 deletions isar/test/sentry_isar_collection_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ void main() {
);
expect(crumb?.type, 'query');
expect(crumb?.data?['status'], status);
if (status != 'ok') {
expect(crumb?.level, SentryLevel.warning);
}
}

group('add spans', () {
Expand Down
3 changes: 3 additions & 0 deletions isar/test/sentry_isar_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ void main() {
expect(crumb?.type, 'query');
expect(crumb?.data?[SentryIsar.dbNameKey], Fixture.dbName);
expect(crumb?.data?['status'], status);
if (status != 'ok') {
expect(crumb?.level, SentryLevel.warning);
}
}

group('add spans', () {
Expand Down