aboutsummaryrefslogtreecommitdiff
path: root/src/index.spec.ts
blob: 9f3fef3b51846bb4df7062db7b0397c972a46acc (plain)
1
2
3
4
5
6
7
import { x } from './index';

describe('index', () => {
  it('should export x = 1', () => {
    expect(x).toEqual(1);
  });
});