docs(forms-js): fix to run local and in plunker, pass tests

closes #754
This commit is contained in:
Ward Bell 2016-01-26 00:13:18 -08:00
parent 76a8d022a7
commit 12d4e17f94
3 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
describeIf(browser.appIsTs, 'Forms Tests', function () {
describeIf(browser.appIsTs || browser.appIsJs, 'Forms Tests', function () {
beforeEach(function () {
browser.get('');

View File

@ -12,15 +12,19 @@
<link rel="stylesheet" href="styles.css">
<!-- #enddocregion styles -->
<!-- IE required polyfill -->
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2.umd.js"></script>
<script src="node_modules/rxjs/bundles/Rx.umd.js"></script>
<script src="node_modules/angular2/bundles/angular2-all.umd.js"></script>
<!-- #docregion scripts-hero, scripts-hero-form -->
<script src='app/hero.js'></script>
<!-- #enddocregion scripts-hero -->
<script src='app/hero-form.component.js'></script>
<!-- #enddocregion scripts-hero-form -->
<!-- #docregion scripts, scripts-hero, scripts-hero-form -->
<script src='app/app.js'></script>
<script src='app/app.component.js'></script>
<script src='app/boot.js'></script>
<!-- #enddocregion scripts, scripts-hero, scripts-hero-form -->
</head>

View File

@ -1,4 +1,4 @@
{
"description": "Forms",
"files": ["**/*.js"]
"files":["app/**/*.js", "**/*.html", "**/*.css"]
}