mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
19 lines
336 B
HTML
19 lines
336 B
HTML
<html>
|
|
<link rel="import" href="../resources/chai.html" />
|
|
<link rel="import" href="../resources/mocha.html" />
|
|
<script>
|
|
|
|
describe('This suite', function() {
|
|
it.only('should only run this test', function() {
|
|
assert.ok(true);
|
|
});
|
|
|
|
it('should not run this test', function() {
|
|
assert.ok(false);
|
|
});
|
|
});
|
|
|
|
|
|
</script>
|
|
</html>
|