3 lines
52 B
JavaScript
3 lines
52 B
JavaScript
var identity = x => x;
|
|
expect(identity(1)).toBe(1);
|
var identity = x => x;
|
|
expect(identity(1)).toBe(1);
|