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.
sqm-dashboards/spec/javascript/hello_jest.spec.js

13 lines
267 B

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")
})
})