mirror of
https://github.com/jesse-r-s-hines/obsidian-open-tab-settings.git
synced 2026-07-22 05:43:41 +00:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import { expect } from 'chai';
|
|
import { sum } from '../../src/sum.js';
|
|
|
|
describe("unit tests", () => {
|
|
it('Sum', () => {
|
|
expect(sum(1, 2)).to.equal(3)
|
|
});
|
|
});
|