mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
* Make add/removeClass return whether they did anything. * Move more functions onto utils. * Move bind functions to Blockly. * Routine recompile.
19 lines
567 B
HTML
19 lines
567 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Unit Tests for Blockly</title>
|
|
<script src="../../blockly_uncompressed.js"></script>
|
|
<script>goog.require('goog.testing.jsunit');</script>
|
|
</head>
|
|
<body>
|
|
<script src="utils_test.js"></script>
|
|
<script src="connection_test.js"></script>
|
|
<script src="connection_db_test.js"></script>
|
|
<script src="generator_test.js"></script>
|
|
<script src="names_test.js"></script>
|
|
<script src="workspace_test.js"></script>
|
|
<script src="xml_test.js"></script>
|
|
</body>
|
|
</html>
|