2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-05-02 01:54:19 -04:00
|
|
|
import {verifyNoBrowserErrors} from '@angular/platform-browser/testing_e2e';
|
2015-07-14 20:53:04 -04:00
|
|
|
|
|
|
|
describe('jsonp', function() {
|
|
|
|
|
|
|
|
afterEach(verifyNoBrowserErrors);
|
|
|
|
|
|
|
|
describe('fetching', function() {
|
2016-05-02 01:54:19 -04:00
|
|
|
var URL = 'all/playground/src/jsonp/index.html';
|
2015-07-14 20:53:04 -04:00
|
|
|
|
|
|
|
it('should fetch and display people', function() {
|
|
|
|
browser.get(URL);
|
|
|
|
expect(getComponentText('jsonp-app', '.people')).toEqual('hello, caitp');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-06-08 18:45:15 -04:00
|
|
|
function getComponentText(selector: any /** TODO #9100 */, innerSelector: any /** TODO #9100 */) {
|
2016-04-12 12:40:37 -04:00
|
|
|
return browser.executeScript('return document.querySelector("' + selector + '").querySelector("' +
|
|
|
|
innerSelector + '").textContent.trim()');
|
2015-07-14 20:53:04 -04:00
|
|
|
}
|