mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-16 22:30:36 +08:00
Included: - A sample test fixture - A sample test - Server middleware to serve the E2E harness - Convenient test helpers to simplify loading the right fixture Closes #9557 Closes #9527
5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
angular.module("test", []).
|
|
controller("TestCtrl", function($scope) {
|
|
$scope.text = "Hello, world!";
|
|
});
|