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.
35 lines
841 B
35 lines
841 B
//Imports
|
|
const uno = require('../js/uno');
|
|
|
|
//Instanz CARD_COLORS aus uno.js
|
|
const CARD_COLORS = uno.CARD_COLORS;
|
|
|
|
//Testet mögliche Farben aus Array CARD_COLORS
|
|
describe('Testet die Möglichen Farben', () => {
|
|
|
|
//Es gibt Farblos als "NONE" im Array
|
|
it('Farblos', function () {
|
|
expect(CARD_COLORS[0]).toBe("NONE");
|
|
});
|
|
|
|
//Es gibt Blau als "Blue" im Array
|
|
it('Blau', function () {
|
|
expect(CARD_COLORS[1]).toBe("BLUE");
|
|
});
|
|
|
|
//Es gibt Rot als "RED" im Array
|
|
it('Rot', function () {
|
|
expect(CARD_COLORS[3]).toBe("RED");
|
|
});
|
|
|
|
//Es gibt Grün als "GREEN" im Array
|
|
it('Grün', function () {
|
|
expect(CARD_COLORS[2]).toBe("GREEN");
|
|
});
|
|
|
|
//Es gibt Gelb als "YELLOW" im Array
|
|
it('Gelb', function () {
|
|
expect(CARD_COLORS[4]).toBe("YELLOW");
|
|
});
|
|
|
|
});
|