This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/test/system.test.ts

12 lines
412 B
TypeScript

import { createSystem } from './lib/System.js';
import { expect } from './lib/expect.js'
describe('system', () => {
it('cross linked static instances', (done) => {
expect(createSystem('crossStaticLinking')).to.eventually.be.fulfilled.notify(done);
});
it('non-existant module retrieval throws', (done) => {
expect(createSystem('unknownModule')).to.eventually.be.rejected.notify(done);
})
});