mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-19 22:59:16 -05:00
df3f3fcd42
Using require hook
3 lines
101 B
TypeScript
3 lines
101 B
TypeScript
const add = (a: number, b: number) => a + b
|
|
console.assert(add(10, 2) === 12, '10 + 2 should be 12')
|