mirror of
https://github.com/foss42/apidash.git
synced 2025-12-03 11:27:50 +08:00
12 lines
305 B
Dart
12 lines
305 B
Dart
import 'package:apidash/dashbot/error/chat_failure.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('ChatFailure basics', () {
|
|
test('toString format', () {
|
|
const f = ChatFailure('network down', code: '503');
|
|
expect(f.toString(), 'ChatFailure: network down');
|
|
});
|
|
});
|
|
}
|