Files
cypress/system-tests/projects/webpack-dev-server-ts/test.cy.ts
2022-11-08 12:21:53 -06:00

6 lines
129 B
TypeScript

import { helloWorld } from './helloWorld'
it('should return "Hello World"', () => {
expect(helloWorld()).eq('Hello World')
})