@lcap/asl
Version:
NetEase Application Specific Language
17 lines • 607 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const chai_1 = require("chai");
const types_1 = require("../../../types");
describe('App', () => {
it('load', async () => {
const app = new types_1.App({ id: '586d57a8-fafe-47e1-ab0e-1315e22c2e9b' });
await app.load();
chai_1.expect(app.projectId).to.equal('23');
});
it('loadServices', async () => {
const app = new types_1.App({ id: '586d57a8-fafe-47e1-ab0e-1315e22c2e9b' });
await app.load();
await app.loadServices();
});
});
//# sourceMappingURL=App.spec.js.map