eazy-pomelo
Version:
NetEase Pomelo Of EazyGame OEM
18 lines (15 loc) • 449 B
JavaScript
var pomelo = require('../');
var should = require('should');
var mockBase = process.cwd() + '/test';
describe('pomelo', function() {
describe('#createApp', function() {
it('should create and get app, be the same instance', function(done) {
var app = pomelo.createApp({base: mockBase});
should.exist(app);
var app2 = pomelo.app;
should.exist(app2);
should.strictEqual(app, app2);
done();
});
});
});