本文整理匯總了TypeScript中emberclear/tests/helpers/factories/contact-factory.createContact函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript createContact函數的具體用法?TypeScript createContact怎麽用?TypeScript createContact使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了createContact函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: function
hooks.beforeEach(async function() {
me = getService<CurrentUserService>('currentUser').record!;
await createContact('First Contact');
await createContact('Second Contact');
await visit('/contacts');
});
示例2: function
hooks.beforeEach(async function(assert) {
service = getService<AutoResponder>('messages/auto-responder');
somePerson = await createContact('some person');
const store = getService<StoreService>('store');
const me = getService<CurrentUserService>('currentUser');
let messages = await store.findAll('message');
assert.equal(messages.length, 0, 'there are no messages');
await store
.createRecord('message', {
to: somePerson.uid,
queueForResend: true,
sender: me.record,
})
.save();
await store
.createRecord('message', {
to: somePerson.uid,
queueForResend: true,
sender: me.record,
})
.save();
messages = await store.findAll('message');
assert.equal(messages.length, 2, 'there are 2 messages');
const pendingMessages = await store.query('message', {
queueForResend: true,
to: somePerson.uid,
});
assert.equal(pendingMessages.length, 2, 'there are 2 pending messages');
});
示例3: test
test('a delivery confirmation is built', async function(assert) {
assert.expect(5);
const me = getService<CurrentUserService>('currentUser');
await me.exists();
const store = getService<StoreService>('store');
const service = getService<AutoResponder>('messages/auto-responder');
const sender = await createContact('some user');
const receivedMessage = store.createRecord('message', {
id: uuid(),
sender,
body: 'test message',
});
stubService('messages/dispatcher', {
sendToUser: {
perform(response: Message, to: Identity) {
assert.equal(response.target, TARGET.MESSAGE);
assert.equal(response.type, TYPE.DELIVERY_CONFIRMATION);
assert.equal(response.to, receivedMessage.id);
assert.equal(response.sender, me.record);
assert.equal(to.publicKey, sender.publicKey);
},
},
});
service.messageReceived(receivedMessage);
});
示例4: function
hooks.beforeEach(async function() {
await createContact('first contact');
await createContact('second contact');
await waitFor(selectors.contacts);
});
示例5: function
hooks.beforeEach(async function() {
someone = await createContact('someone else');
id = someone.id;
});