本文整理汇总了TypeScript中ast_utils.AstUtils类的典型用法代码示例。如果您正苦于以下问题:TypeScript AstUtils类的具体用法?TypeScript AstUtils怎么用?TypeScript AstUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AstUtils类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: beforeAll
beforeAll( async () => {
global.Promise = Promise;
debug('connecting AstUtils...');
ast_utils = new AstUtils(astUtilsConfig);
await ast_utils.connect();
debug('connecting AstMongo...');
ast_mongo = new AstMongo(astMongoOptions);
await ast_mongo.connect();
await ast_mongo.Identify.remove({});
});
示例2: test
test ('check if there is no identifies', async () => {
const identifies = await ast_utils.exec('pjsip show identifies');
expect(identifies).toMatchSnapshot();
});
示例3:
afterAll(() => {
ast_utils.disconnect();
});