Core features implemented.

This commit is contained in:
Mario Basic
2015-06-18 17:28:46 +02:00
parent f98e2d09d9
commit fb6e8bee75
8 changed files with 384 additions and 199 deletions

View File

@@ -0,0 +1,10 @@
var chai = require('chai');
var expect = chai.expect;
import contains from '../../assets/js/helpers/contains';
describe('contains', function() {
it('should be a function', function() {
expect(contains).to.be.a('function');
});
});