By default, TypeScript will emit `"use strict"` directives, so it is not necessary to include `'use strict'` in `.ts` files: https://www.typescriptlang.org/docs/handbook/compiler-options.html#:~:text=--noImplicitUseStrict PR Close #38143
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
describe('Docs Style Guide', function () {
|
|
let _title = 'Authors Style Guide Sample';
|
|
|
|
beforeAll(function () {
|
|
browser.get('');
|
|
});
|
|
|
|
it('should display correct title: ' + _title, function () {
|
|
expect(element(by.css('h1')).getText()).toEqual(_title);
|
|
});
|
|
});
|