Skip to content

Commit 67a81de

Browse files
author
Dennis Falling
committed
fixed project tests
1 parent b2a218f commit 67a81de

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

test/project.test.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@ describe('project.test.js', function () {
3333
'public', 'path', 'path_with_namespace', 'name_with_namespace', 'namespace',
3434
'issues_enabled', 'merge_requests_enabled',
3535
'wiki_enabled', 'created_at', 'last_activity_at',
36-
'archived', 'visibility_level', 'snippets_enabled', 'permissions');
37-
project.owner.should.have.keys('id', 'username', 'name', 'state', 'avatar_url');
36+
'archived', 'visibility_level', 'snippets_enabled', 'permissions',
37+
'tag_list', 'builds_enabled', 'shared_runners_enabled', 'creator_id',
38+
'avatar_url', 'star_count', 'forks_count', 'open_issues_count',
39+
'runners_token', 'public_builds');
40+
project.owner.should.have.keys('id', 'username', 'name', 'state', 'avatar_url',
41+
'web_url');
3842
done();
3943
});
4044
});
@@ -53,7 +57,8 @@ describe('project.test.js', function () {
5357
// 'public', 'path', 'path_with_namespace', 'namespace',
5458
// 'issues_enabled', 'merge_requests_enabled', 'wall_enabled',
5559
// 'wiki_enabled', 'created_at');
56-
project.owner.should.have.keys('id', 'username', 'name', 'state', 'avatar_url');
60+
project.owner.should.have.keys('id', 'username', 'name', 'state', 'avatar_url',
61+
'web_url');
5762
done();
5863
});
5964
});

0 commit comments

Comments
 (0)