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.

34 lines
841 B

  1. //Imports
  2. const uno = require('../js/uno');
  3. //Instanz CARD_COLORS aus uno.js
  4. const CARD_COLORS = uno.CARD_COLORS;
  5. //Testet mögliche Farben aus Array CARD_COLORS
  6. describe('Testet die Möglichen Farben', () => {
  7. //Es gibt Farblos als "NONE" im Array
  8. it('Farblos', function () {
  9. expect(CARD_COLORS[0]).toBe("NONE");
  10. });
  11. //Es gibt Blau als "Blue" im Array
  12. it('Blau', function () {
  13. expect(CARD_COLORS[1]).toBe("BLUE");
  14. });
  15. //Es gibt Rot als "RED" im Array
  16. it('Rot', function () {
  17. expect(CARD_COLORS[3]).toBe("RED");
  18. });
  19. //Es gibt Grün als "GREEN" im Array
  20. it('Grün', function () {
  21. expect(CARD_COLORS[2]).toBe("GREEN");
  22. });
  23. //Es gibt Gelb als "YELLOW" im Array
  24. it('Gelb', function () {
  25. expect(CARD_COLORS[4]).toBe("YELLOW");
  26. });
  27. });