UNPKG

coreenmo-animal-elephant

Version:

coreenmo (Animal Elephant) - Function to display the name of the Elephant animal and only one animal name is displayed.

11 lines (9 loc) 296 B
const assert = require('assert'); const { getAnimal } = require('../src/index'); describe('Showing name of one animal', function() { describe('#getAnimal()', function() { it('should return animal elephant', function() { assert.strictEqual(getAnimal(), 'Elephant'); }); }); });