mirror of
https://github.com/roughike/inKino.git
synced 2025-08-06 15:50:00 +08:00

* First try at CI setup. * Place .travis.yml to repo root. * Fix issues running the scripts from wrong directories. * Another try with the rename script. * Readd the accidentally lost sample file. * Try to install Dart with the instructions on the dartlang.org website. * Get all packages before analyzing or testing anything. * Use full path when running flutter commands. * Another try with path variables. * Inline all scripts to a single file. * Fix analysis issues * Fix failing test in core. * Remove leftover stuff in mobile. * Add fancy build status badge. * Update statement about current Flutter version used for building inKino.
9 lines
206 B
Dart
9 lines
206 B
Dart
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
/// TODO: Remove this and add proper tests.
|
|
test('trues are true and falses are false', () {
|
|
expect(true, isTrue);
|
|
expect(false, isFalse);
|
|
});
|
|
} |