本文整理匯總了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();
});