Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

mocha example

node v8.17.0
version: 1.0.0
endpointsharetweet
const { expect } = require('chai'); const { tests } = require('mocha-runkit'); function bubbleSort(arr) { // ваш код здесь } await tests({ 'сортировка пузырьком': () => { expect(bubbleSort([5,7,2,6])).to.eql([2,5,6,7]) } })
Loading…

no comments

    sign in to comment