Source formatting #19

This commit is contained in:
Zeno Rocha
2015-09-29 22:28:15 -07:00
parent 4534fc4ca0
commit aeec3fd520
3 changed files with 7 additions and 8 deletions

15
test/module-systems.js Normal file
View File

@@ -0,0 +1,15 @@
var assert = require('chai').assert;
var browserify = require('browserify');
describe('CommonJS', function() {
it('should import the lib in a commonjs env without babel', function(done) {
browserify('./dist/clipboard.js').bundle(function(err) {
assert.equal(err, null);
done();
});
});
});
describe('AMD', function() {
// TODO: Write test case
});