You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
303 B

  1. package test;
  2. import js.Browser;
  3. import utest.Runner;
  4. import utest.ui.Report;
  5. import test.utils.TestCartUtils;
  6. class TestAll
  7. {
  8. public static function main()
  9. {
  10. var runner = new Runner();
  11. // Utils
  12. runner.addCase(new TestCartUtils());
  13. Report.create(runner);
  14. runner.run();
  15. }
  16. }