mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
const chai = require("chai");
|
|
|
|
const expect = chai.expect;
|
|
|
|
describe('Stub test', () => {
|
|
it('should pass', () => {
|
|
expect(true).to.be.true
|
|
})
|
|
})
|