# Conflicts: # public/doc-shredder/_test/.gitignore # public/doc-shredder/_test/test_source/app.js # public/doc-shredder/_test/test_source/app.ts # public/doc-shredder/_test/test_source/app2.ts # public/doc-shredder/_test/test_source/do-not-read.js # public/doc-shredder/_test/test_source/first.html # public/doc-shredder/_test/test_source/gettingstarted/js/index.html # public/doc-shredder/_test/test_source/gettingstarted/js/main.js # public/doc-shredder/_test/test_source/gettingstarted/protractor-spec.js # public/doc-shredder/_test/test_source/gettingstarted/ts/index.html # public/doc-shredder/_test/test_source/gettingstarted/ts/main.js # public/doc-shredder/_test/test_source/gettingstarted/ts/main.js.map # public/doc-shredder/_test/test_source/gettingstarted/ts/main.ts # public/doc-shredder/_test/test_source/sub1/foo/script.js # public/doc-shredder/_test/test_source/sub1/script.2.js # public/doc-shredder/_test/test_source/sub1/script.js # public/doc-shredder/_test/test_source/sub1/script.ts # public/doc-shredder/_test/test_source/sub1/second.html # public/doc-shredder/test/test_source/app.ts # public/doc-shredder/test/test_source/app2.ts # public/doc-shredder/test/test_source/do-not-read.js # public/doc-shredder/test/test_source/gettingstarted/js/index.html # public/doc-shredder/test/test_source/gettingstarted/js/main.js # public/doc-shredder/test/test_source/gettingstarted/protractor-spec.js # public/doc-shredder/test/test_source/gettingstarted/ts/index.html # public/doc-shredder/test/test_source/gettingstarted/ts/main.js # public/doc-shredder/test/test_source/gettingstarted/ts/main.js.map # public/doc-shredder/test/test_source/gettingstarted/ts/main.ts # public/doc-shredder/test/test_source/sub1/foo/script.js # tools/doc-shredder/_test/test_source/no-multiregion/app.ts # tools/doc-shredder/_test/test_source/no-multiregion/app2.ts # tools/doc-shredder/_test/test_source/no-multiregion/do-not-read.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/js/index.html # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/js/main.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/protractor-spec.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/index.html # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.js.map # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.ts # tools/doc-shredder/_test/test_source/no-multiregion/nestedFolder/script.js
21 lines
501 B
JavaScript
21 lines
501 B
JavaScript
// protractor-spec.js
|
|
describe('Protractor quick start test', function() {
|
|
|
|
// #docregion javascript
|
|
it('should display Alice with JavaScript', function() {
|
|
browser.get('gettingstarted/js/index.html');
|
|
});
|
|
// #enddocregion
|
|
|
|
// #docregion typescript
|
|
it('should display Alice with TypeScrip', function() {
|
|
browser.get('gettingstarted/ts/index.html');
|
|
});
|
|
// #enddocregion
|
|
|
|
afterEach(function() {
|
|
expect(element(by.id('output')).getText()).toEqual('My first Angular 2 App');
|
|
});
|
|
});
|
|
|