1 2 3 4 5 6 7
import { x } from './index'; describe('index', () => { it('should export x = 1', () => { expect(x).toEqual(1); }); });