build: adding basic e2e testing infrastructure
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import {Component, EventEmitter, Input, Output} from '@angular/core';
|
||||
import {ObservableWrapper} from '@angular/facade';
|
||||
import {ObservableWrapper} from '@angular/core/src/facade/async';
|
||||
|
||||
@Component({selector: 'zippy', templateUrl: 'zippy.html'})
|
||||
@Component({selector: 'zippy', templateUrl: 'app/zippy.html'})
|
||||
export class Zippy {
|
||||
visible: boolean = true;
|
||||
@Input() title: string = '';
|
@ -6,6 +6,6 @@
|
||||
Loading...
|
||||
</zippy-app>
|
||||
|
||||
$SCRIPTS$
|
||||
<script src="../bootstrap.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {bootstrap} from '@angular/platform-browser';
|
||||
import {bootstrap} from '@angular/platform-browser-dynamic';
|
||||
import {Component} from '@angular/core';
|
||||
import {Zippy} from './zippy';
|
||||
import {Zippy} from './app/zippy';
|
||||
|
||||
@Component({
|
||||
selector: 'zippy-app',
|
||||
|
Reference in New Issue
Block a user