mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
18 lines
655 B
HTML
18 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
<title>Ng App Unit Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
|
|
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
|
|
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
|
|
<script src="../node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Unit Testing Chapter #1: Proof of life. -->
|
|
<script>
|
|
it('true is true', function(){ expect(true).toEqual(true); });
|
|
</script>
|
|
</body>
|
|
</html>
|