12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
describe('Boolean', function () {
|
|
'use strict';
|
|
|
|
describe('true', function () {
|
|
it('should equal true even on the server', function () {
|
|
var result = true;
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
});
|
|
|