of cards. // describe('a hand of cards as one array', () => { // it('is the concatenation of the arrays by suit', () => { // const hearts = ['A♥', '7♥', '6♥']; // const diamonds = []; // const clubs = ['10♣', '9♣', '5♣', '2♣']; // const spades = ['J♠', '9♠', '8♠', '7♠', '5♠', '2♠']; // const hand = {hearts, diamonds, clubs, spades}; // const cards = ['A♥', '7♥', '6♥', '10♣', '9♣', '5♣', '2♣', // 'J♠', '9♠', '8♠', '7♠', '5♠', '2♠']; // expect(cardsOfHand(hand).to.deep.equal(cards); // }); // });