mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Add dart fixture project
This commit is contained in:
parent
c7b8acb0d7
commit
cd21268493
10 changed files with 464 additions and 3 deletions
12
reports/dart/test/second_test.dart
Normal file
12
reports/dart/test/second_test.dart
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import 'dart:async';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
test('Timeout test', () async {
|
||||
await Future.delayed(const Duration(seconds: 1));
|
||||
}, timeout: Timeout(Duration(microseconds: 1)));
|
||||
|
||||
test('Skipped test', () {
|
||||
// do nothing
|
||||
}, skip: 'skipped test');
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue