本文整理汇总了TypeScript中client/connection.pull_session函数的典型用法代码示例。如果您正苦于以下问题:TypeScript pull_session函数的具体用法?TypeScript pull_session怎么用?TypeScript pull_session使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了pull_session函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: pull_session
(session1) => {
return pull_session(server_process.url, session1.id).then(
(session2) => {
try {
expect(session2.document.roots().length).to.equal(1)
const root = session2.document.roots()[0]
expect(root.start).to.equal(123)
expect(root.end).to.equal(456)
expect(session2.document.title()).to.equal("Hello Title")
} catch (e) {
throw e
} finally {
session1.close()
session2.close()
}
return "OK"
},
(error) => {
session1.close()
throw error
},
).catch((error) => {
// es6 promises would swallow the test errors otherwise
throw error
})
},
示例2: with_server
const promise = with_server((server_process) => {
return pull_session(server_process.url, undefined, "foo=10&bar=20").then(
(session) => {
expect((session as any)._connection.args_string).to.be.equal("foo=10&bar=20") // XXX
return "OK"
},
)
})