Initial Commit

This commit is contained in:
Marty Oehme 2018-07-05 17:59:11 +02:00
parent 869faf2919
commit 0277e5ddc7
13 changed files with 268 additions and 1 deletions

12
test/dart_test.dart Normal file
View 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));
});
}