jasmine-headless-webkit/spec/jasmine/console_log/console_log_spec.js

8 lines
166 B
JavaScript
Raw Normal View History

describe('console.log', function() {
it('should succeed, but with a console.log', function() {
console.log("hello");
expect(success).toEqual(1);
});
});