inital boilerplate checkin
This commit is contained in:
10
test/index.js
Normal file
10
test/index.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import User from '../lib/index'
|
||||
import expect from 'expect.js';
|
||||
|
||||
describe('User class', function () {
|
||||
it('should return the name', function () {
|
||||
var user = new User('test', 'user');
|
||||
|
||||
expect(user.getName()).to.equal('test user');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user