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.
 
 
 

15 lines
317 B

const fullHouse = require('../inc/fullHouse');
//Eine Test Gruppe, mit mehreren Tests
describe('tests kniffel', () => {
it('teste ob zwei und drei gleiche Augenzahlen existieren (Full House)', ()=>{
//Vergleiche Ist- und Sollergebnis
expect(fullHouse([2, 2, 3, 2, 3])).toBe(25);
});
})