fix(core): update

This commit is contained in:
2020-11-16 23:04:54 +00:00
parent 05349ba947
commit fd0dc50d3b
5 changed files with 101 additions and 16 deletions

View File

@ -12,7 +12,17 @@ tap.test('first test', async () => {
});
tap.test('should get me info', async () => {
const result = await testMediumAccount.getUserInfo();
const result = await testMediumAccount.getAccountInfo();
// console.log(result);
});
tap.test('should get publications', async () => {
const result = await testMediumAccount.getPublications();
// console.log(result);
});
tap.test('should get own publications', async () => {
const result = await testMediumAccount.getOwnPublications();
// console.log(result);
});