@opstarts/chimp
Version:
Develop acceptance tests & end-to-end tests with realtime feedback.
25 lines (23 loc) • 577 B
JavaScript
describe('Chimp Jasmine', () => {
describe('Page title', () => {
it('should be set by the Meteor method', () => {
browser.url('http://google.com');
expect(browser.getTitle()).toBe('Google');
});
});
describe('ES2015', function () {
it('is supported', function () {
const {a, b} = {a: 'foo', b: 'bar'};
const arrowFunc = (foo) => foo;
class Foo {
constructor() {}
foo() {}
}
var object = {
foo() {}
};
const templateString = `Foo`;
const [c, ,d] = [1,2,3];
});
});
});