UNPKG

declerck-my-exercises

Version:
10 lines (9 loc) 325 B
import * as assert from "assert" import { my_display_alpha } from "../day-1/exercise-1.js" describe('Exo 1', function () { describe('my_display_alpha()', function () { it('should return the alphabet', function () { assert.equal(my_display_alpha(),"abcdefghijklmnopqrstuvwxyz") }); }); });