5 lines
94 B

import { count, incr } from './foo';
assert.equal(count, 0);
incr();
assert.equal(count, 1);