resistor-color.test.ts 558 B

1234567891011121314151617181920212223242526272829303132
  1. import { colorCode, COLORS } from './resistor-color'
  2. describe('color code', () => {
  3. it('Black', () => {
  4. expect(colorCode('black')).toEqual(0)
  5. })
  6. xit('White', () => {
  7. expect(colorCode('white')).toEqual(9)
  8. })
  9. xit('Orange', () => {
  10. expect(colorCode('orange')).toEqual(3)
  11. })
  12. })
  13. describe('Colors', () => {
  14. xit('returns all colors', () => {
  15. expect(COLORS).toEqual([
  16. 'black',
  17. 'brown',
  18. 'red',
  19. 'orange',
  20. 'yellow',
  21. 'green',
  22. 'blue',
  23. 'violet',
  24. 'grey',
  25. 'white',
  26. ])
  27. })
  28. })