Blame test.js

Jared K. Smith 2506643
'use strict';
Jared K. Smith 2506643
Jared K. Smith 2506643
/* deps: mocha */
Jared K. Smith 2506643
var assert = require('assert');
Jared K. Smith 2506643
var bggreen = require('./');
Jared K. Smith 2506643
Jared K. Smith 2506643
describe('bggreen', function () {
Jared K. Smith 2506643
  it('should wrap a string with ansi styling:', function () {
Jared K. Smith 2506643
    assert.equal(bggreen('string'), '\u001b[42mstring\u001b[49m');
Jared K. Smith 2506643
  });
Jared K. Smith 2506643
});