Skip to content

Commit

Permalink
feat(mime): add simple test to gsheet mime type
Browse files Browse the repository at this point in the history
  • Loading branch information
ziqq committed Nov 20, 2024
1 parent 3dd0370 commit 40065a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/mime/test/mime_type_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ void main() {
_expectMimeType('file.markdown', 'text/markdown');
_expectMimeType('file.heif', 'image/heif');
_expectMimeType('file.heic', 'image/heic');
_expectMimeType(
'file.gsheet',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
);
});

test('unknown-mime-type', () {
Expand Down

0 comments on commit 40065a3

Please sign in to comment.