refactor(render): ts’ify tests

This commit is contained in:
Tobias Bosch
2015-05-26 09:25:39 -07:00
parent d773b6a00a
commit 1dc8ba6920
30 changed files with 1690 additions and 1801 deletions

View File

@ -0,0 +1,9 @@
/*
* Runs compiler tests using in-browser DOM adapter.
*/
import {runCompilerCommonTests} from './compiler_common_tests';
export function main() {
runCompilerCommonTests();
}