t2.js 474 B

12345678910111213141516171819202122
  1. import three from './fixtures/3'
  2. import four from './fixtures/4'
  3. describe('t2', () => {
  4. describe('Fixture 3', () => {
  5. it('Should be defined.', () => {
  6. expect(three).toBeDefined()
  7. })
  8. it('should return dependency signature', () => {
  9. expect(three()).toBe('3b')
  10. })
  11. })
  12. describe('Fixture 4', () => {
  13. it('Should be defined.', () => {
  14. expect(four).toBeDefined()
  15. })
  16. it('should return dependency signature', () => {
  17. expect(four()).toBe('4')
  18. })
  19. })
  20. })