@tepez/jasmine-protractor-matchers
v2.2.1
Published
Custom jasmine2 matchers for writing cleaner e2e tests with protractor
Downloads
204
Readme
jasmine-protractor-matchers
Custom jasmine3 async matchers for writing cleaner e2e tests with protractor
Install
npm install --save @tepez/jasmine-protractor-matchers
Usage
Javascript
const matchers = require('@tepez/jasmine-protractor-matchers');
beforeEach(() => {
jasmine.addAsyncMatchers(matchers);
});
Typescript
import {matchers} from '@tepez/jasmine-protractor-matchers'
beforeEach(() => {
jasmine.addAsyncMatchers(matchers);
});
it('should be displayed', async () => {
await expectAsync($('#element')).toBeDisplayed();
});