rocks
Version:
Lightweight SASS utility library that is heavily inspired by Bourbon.
17 lines (12 loc) • 327 B
JavaScript
import {expect} from 'chai';
import andromeda from './index';
describe('andromeda', function() {
describe('object', function() {
it('should be an object', function() {
expect(andromeda).to.satisfy(isObject);
function isObject(object) {
return typeof object === 'object';
}
});
});
});