UNPKG

playing-cards

Version:
15 lines (12 loc) 321 B
'use strict' function importTest (name, path) { describe(name, function () { require(path) }) } describe('playing-cards', function () { importTest('Card', './card.test.js') importTest('Deck', './deck.test.js') importTest('Player', './player.test.js') importTest('DECK_TYPES', './deck-types.test.js') })