You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
297 B

const assert = require('assert');
const userdb = require('./../src/models/user-info.js');
describe('#hello.js', () => {
it('0', async (done) => {
try {
let data = userdb.create({
username: "sdada"
});
done();
} catch (error) {
done(error);
}
});
});