You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import Jester from "jester"
|
|
|
|
describe('this test should pass', () => {
|
|
test('very first test', () => {
|
|
expect(true).toBe(true)
|
|
})
|
|
|
|
test('Jester.hello returns greeting', () =>{
|
|
const jester = new Jester()
|
|
expect(jester.hello()).toBe("Hello")
|
|
})
|
|
})
|