require('YourBest');
describe('success', () => {
it('should be progressive', () => {
expect('a few challenges').to.exist;
});
it('should be a worthy goal', () => {
if ('you tried' === YourBest) {
expect('everything').to.be.ok;
}
});
});