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

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