Personal use.
Best format
const assert = require('chai').assert
/******************** To be tested *******************/
const randomMethod = require('../src/randomMethod')
/******************** Tests *******************/
const testRandomMethod = () => describe('# Network connection', () => {
it('should print info', () => {
// test content
})
})
/******************** Summary *******************/
describe('>>> src/randomMethod.js tests', () => {
testRandomMethod()
})
网友评论