mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 14:10:57 -06:00
6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
import { helloWorld } from './helloWorld'
|
|
|
|
it('should return "Hello World"', () => {
|
|
expect(helloWorld()).eq('Hello World')
|
|
})
|