本文整理汇总了TypeScript中@jupyterlab/docregistry.Context.dispose方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Context.dispose方法的具体用法?TypeScript Context.dispose怎么用?TypeScript Context.dispose使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@jupyterlab/docregistry.Context
的用法示例。
在下文中一共展示了Context.dispose方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should be emitted when the context is disposed', (done) => {
context.disposed.connect((sender, args) => {
expect(sender).to.be(context);
expect(args).to.be(void 0);
done();
});
context.dispose();
});
示例2: it
it('should be emitted when the context is disposed', () => {
let called = false;
context.disposed.connect((sender, args) => {
expect(sender).to.equal(context);
expect(args).to.be.undefined;
called = true;
});
context.dispose();
expect(called).to.equal(true);
});
示例3:
return context.session.shutdown().then(() => {
context.dispose();
});
示例4: it
it('should be true after the context is disposed', () => {
context.dispose();
expect(handler.isDisposed).to.equal(true);
});
示例5: afterEach
afterEach(() => {
context.dispose();
handler.dispose();
});
示例6: afterEach
afterEach(async () => {
await context.session.shutdown();
context.dispose();
});
示例7: afterEach
afterEach(() => {
context.dispose();
});