mirror of
https://github.com/farcasclaudiu/kanban2.git
synced 2026-06-28 19:01:33 +03:00
Initial commit by angular2-firebase-bootstrap generator
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { ValuationJsPage } from './app.po';
|
||||
|
||||
describe('kanban2 App', function() {
|
||||
let page: ValuationJsPage;
|
||||
|
||||
beforeEach(() => {
|
||||
page = new ValuationJsPage();
|
||||
});
|
||||
|
||||
it('should display message saying app works', () => {
|
||||
page.navigateTo();
|
||||
expect(page.getParagraphText()).toEqual('app works!');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,11 @@
|
||||
import { browser, element, by } from 'protractor';
|
||||
|
||||
export class ValuationJsPage {
|
||||
navigateTo() {
|
||||
return browser.get('/');
|
||||
}
|
||||
|
||||
getParagraphText() {
|
||||
return element(by.css('app-root h1')).getText();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"declaration": false,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../dist/out-tsc-e2e",
|
||||
"sourceMap": true,
|
||||
"target": "es5",
|
||||
"typeRoots": [
|
||||
"../node_modules/@types"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user