docs(forms-js): fix to run local and in plunker, pass tests
closes #754
This commit is contained in:
parent
76a8d022a7
commit
12d4e17f94
|
@ -1,4 +1,4 @@
|
|||
describeIf(browser.appIsTs, 'Forms Tests', function () {
|
||||
describeIf(browser.appIsTs || browser.appIsJs, 'Forms Tests', function () {
|
||||
|
||||
beforeEach(function () {
|
||||
browser.get('');
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"description": "Forms",
|
||||
"files": ["**/*.js"]
|
||||
"files":["app/**/*.js", "**/*.html", "**/*.css"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue