|
@ -1,6 +1,6 @@ |
|
|
//Imports
|
|
|
//Imports
|
|
|
const uno = require('../js/uno'); |
|
|
const uno = require('../js/uno'); |
|
|
const Cards = require('../js/cards/Cards'); |
|
|
|
|
|
|
|
|
const Card = require('../js/cards/Card'); |
|
|
|
|
|
|
|
|
//Instanz CARD_COLORS aus uno.js
|
|
|
//Instanz CARD_COLORS aus uno.js
|
|
|
const CARD_COLORS = uno.CARD_COLORS; |
|
|
const CARD_COLORS = uno.CARD_COLORS; |
|
@ -14,7 +14,7 @@ describe('Karten erstellen', () => { |
|
|
|
|
|
|
|
|
//Erstellen einer normalen Karte:
|
|
|
//Erstellen einer normalen Karte:
|
|
|
// Name: 6, Farbe: Blau
|
|
|
// Name: 6, Farbe: Blau
|
|
|
card = new Cards('6', CARD_COLORS[1]); |
|
|
|
|
|
|
|
|
card = new Card('6', CARD_COLORS[1]); |
|
|
|
|
|
|
|
|
//Testet das Erstellen der Karte
|
|
|
//Testet das Erstellen der Karte
|
|
|
testCreatedCard(card, '6', "BLUE"); |
|
|
testCreatedCard(card, '6', "BLUE"); |
|
@ -25,7 +25,7 @@ describe('Karten erstellen', () => { |
|
|
|
|
|
|
|
|
//Erstellen einer normalen Karte:
|
|
|
//Erstellen einer normalen Karte:
|
|
|
// Name: 6, Farbe: Blau
|
|
|
// Name: 6, Farbe: Blau
|
|
|
card = new Cards('8', CARD_COLORS[2]); |
|
|
|
|
|
|
|
|
card = new Card('8', CARD_COLORS[2]); |
|
|
|
|
|
|
|
|
//Testet das Erstellen der Karte
|
|
|
//Testet das Erstellen der Karte
|
|
|
testCreatedCard(card, '8', "GREEN"); |
|
|
testCreatedCard(card, '8', "GREEN"); |
|
@ -34,7 +34,7 @@ describe('Karten erstellen', () => { |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
//Testet eine Karte auf die Eigenschaften von Cards.js
|
|
|
|
|
|
|
|
|
//Testet eine Karte auf die Eigenschaften von Card.js
|
|
|
function testCreatedCard(card, number, card_colors){ |
|
|
function testCreatedCard(card, number, card_colors){ |
|
|
|
|
|
|
|
|
//Wenn Karte erstellt, wird Sie noch nicht auf dem Bildschirm abgebildet
|
|
|
//Wenn Karte erstellt, wird Sie noch nicht auf dem Bildschirm abgebildet
|
|
|