mirror of https://gitee.com/bigwinds/arangodb
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
/* global describe, it */
|
|
'use strict';
|
|
|
|
const expect = require('chai').expect;
|
|
|
|
describe('boolean comparison', () => {
|
|
it('should succeed for identity', () => {
|
|
expect(true).to.equal(true);
|
|
});
|
|
|
|
it('should fail for different values', () => {
|
|
expect(true).to.equal(false);
|
|
});
|
|
});
|
|
|
|
describe('another boolean comparison', () => {
|
|
it('should succeed for identity', () => {
|
|
expect(true).to.equal(true);
|
|
});
|
|
});
|