1
0
Fork 0
arangodb/tests/js/common/test-data/apps/with-tests/test2.js

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);
});
});