spec.js 217 B

123456789101112
  1. describe('My First Test', () => {
  2. it('Does not do much!', () => {
  3. expect(true).to.equal(true)
  4. })
  5. })
  6. describe('My 2nd Test', () => {
  7. it('Does not do much!', () => {
  8. expect(true).to.equal(false)
  9. })
  10. })