cloud-take-home-assignment-2/test/index.test.js
2024-05-10 14:03:05 +01:00

6 lines
90 B
JavaScript

describe('myJSTest', () => {
it('should pass', () => {
expect(2).toBe(2);
});
});