Initial Commit
This commit is contained in:
parent
869faf2919
commit
0277e5ddc7
13 changed files with 268 additions and 1 deletions
12
test/dart_test.dart
Normal file
12
test/dart_test.dart
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import 'package:test/test.dart';
|
||||
import 'dart:html' as html;
|
||||
|
||||
void main() {
|
||||
test("dart_test works", () {
|
||||
expect(4+4, equals(8));
|
||||
});
|
||||
|
||||
test("dart_test works with the browser", () {
|
||||
expect(html.Document, equals(isNotNull));
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue