dart-sdk/tests
Terry Lucas 9f09ef0af3 - Fixed callback signatures with indexed_db open method to expose VersionChangeEvent and
Event type parameters instead of dynamic.
- Fixed missing interceptor in dart2js for MutationEvent (even though its deprecated
and should not be used).  The MutationEvent is created when a node is deleted. Enabled
Dart MutationEvent class generation.
- Fixed/re-enabled all indexed_db tests to run and pass successfully.

Stephen please take a look - target in VersionChangeEvent is a final field, per your suggestion,
instead of a getter.  The MutationEvent is returned in the browser and without the MutationEvent
Dart class the error:

     Uncaught TypeError: t1.get$target is not a function


R=vsm@google.com,gabrielchow@google.com,sra@google.com

Change-Id: Ic36aea8c33b4263a32ff9d047ba3e6b979e03b10
Reviewed-on: https://dart-review.googlesource.com/41569
Reviewed-by: Stephen Adams <sra@google.com>
Reviewed-by: Vijay Menon <vsm@google.com>
Commit-Queue: Terry Lucas <terry@google.com>
2018-02-23 14:29:45 +00:00
..
angular
co19 Update fasta parser to report error on static constructor 2018-02-23 13:18:46 +00:00
co19_2 Update fasta parser to report error on static constructor 2018-02-23 13:18:46 +00:00
compiler Replace PrimitiveValue.primitiveValue by individual fields on the concrete 2018-02-21 17:25:27 +00:00
corelib Skip remaining Dart 1.0 tests 2018-02-15 14:14:07 +00:00
corelib_2 Test for compiled-to-JavaScript version of BigInt.isValidInt 2018-02-22 04:07:52 +00:00
dart
html Install JS-interop properties on JavaScriptObject 2018-02-23 00:31:52 +00:00
isolate Move new tests from tests/isolate to tests/lib_2/isolate. 2018-02-22 10:03:23 +00:00
kernel [Tests] Update tests/kernel for Dart 2 fixed-size integers 2018-02-13 00:09:28 +00:00
language Update fasta parser to report error on static constructor 2018-02-23 13:18:46 +00:00
language_2 Update fasta parser to report error on static constructor 2018-02-23 13:18:46 +00:00
lib Workaround deferred library limitation. 2018-02-22 20:34:39 +00:00
lib_2 - Fixed callback signatures with indexed_db open method to expose VersionChangeEvent and 2018-02-23 14:29:45 +00:00
search
standalone Skip remaining Dart 1.0 tests 2018-02-15 14:14:07 +00:00
standalone_2 Update status for dartk on standalone test that times out or passes 2018-02-23 09:27:46 +00:00
light_unittest.dart
README

Run Existing Tests
==================

See the output of

  ../tools/test.py --help

for how to run tests.

See also

  https://code.google.com/p/dart/wiki/Building#Testing

for detailed examples.

Create New Tests
================

See comments above

  factory StandardTestSuite.forDirectory

in

  ../tools/testing/dart/test_suite.dart

for the default test directory layout. By default test-file names must
end in "_test.dart", but some test suites, such as ./co19, subclass
StandardTestSuite and override this default.

See comments at the beginning of

  ../tools/testing/dart/multitest.dart

for how to create tests that pass by failing with a known error. For
example,

  ...
  int x = "not an int"; /// 01: static type warning
  ...

as part of a test will only pass the "--compiler dart2analyzer" test if
the assignment generates a static type warning.