@cbt/karma-cbt-launcher
Version:
Custom launcher for Karma that allows testing remotely through CrossBrowserTesting.
14 lines (12 loc) • 467 B
JavaScript
describe('CbtTest', function() {
it('should pass"', function() {
document.body.innerHTML = window.__html__['tests/index.html'];
var value = document.getElementById('custom-div').innerText;
expect(value).toBe('test value');
});
it('should fail"', function() {
document.body.innerHTML = window.__html__['tests/index.html'];
var value = document.getElementById('custom-div').innerText;
expect(value).toBe('wrong value');
});
});