helloWorld.spec.js 125 Bytes
Newer Older
bert committed
1 2 3 4 5 6 7
import { expect } from 'chai';

describe('hello world', () => {
  it('works!', () => {
    expect(true).to.be.true;
  });
});