Igor Minar 0e56aaf189 fix: remove typescript references to d.ts files from benchpress and e2e tests
using "/// <reference" is incorrect because it makes our code non-portable. The correct solution is to provide
these typings as ambient typings as an additional entry point - which we already do.

Closes #8050
2016-04-13 13:23:27 -07:00

21 lines
632 B
TypeScript

import {verifyNoBrowserErrors} from 'angular2/src/testing/e2e_util';
describe('jsonp', function() {
afterEach(verifyNoBrowserErrors);
describe('fetching', function() {
var URL = 'playground/src/jsonp/index.html';
it('should fetch and display people', function() {
browser.get(URL);
expect(getComponentText('jsonp-app', '.people')).toEqual('hello, caitp');
});
});
});
function getComponentText(selector, innerSelector) {
return browser.executeScript('return document.querySelector("' + selector + '").querySelector("' +
innerSelector + '").textContent.trim()');
}