Julie Ralph f529236bfc refactor(test): rename test_lib to testing
Old test_lib is now testing_internal
test_lib_public is now testing
2015-10-13 10:36:49 -07:00

19 lines
545 B
TypeScript

import {verifyNoBrowserErrors} from 'angular2/src/testing/e2e_util';
describe('md-checkbox', function() {
var url = 'examples/src/material/checkbox/index.html';
beforeEach(() => { browser.get(url); });
afterEach(verifyNoBrowserErrors);
it('should toggle a checkbox', function() {
var checkbox = element.all(by.css('md-checkbox')).first();
checkbox.click();
expect(checkbox.getAttribute('aria-checked')).toEqual('true');
checkbox.click();
expect(checkbox.getAttribute('aria-checked')).toEqual('false');
});
});