@@ -58,45 +58,47 @@ describe('Team', function() { // Isolate tests that are based on a fixed team
5858
5959let hasTestUser = members . reduce (
6060( found , member ) => member . login === testUser . USERNAME || found ,
61- false ) ;
61+ false
62+ ) ;
6263
6364expect ( hasTestUser ) . to . be . true ( ) ;
6465} ) ;
6566} ) ;
6667
6768it ( 'should get team repos' , function ( ) {
68- return team . getRepos ( )
69- . then ( ( { data} ) => {
70- const hasRepo = data . reduce (
71- ( found , repo ) => repo . name === 'fixed-test-repo-1' || found ,
72- false ) ;
73-
74- expect ( hasRepo ) . to . be . true ( ) ;
75- } ) ;
69+ return team . listRepos ( )
70+ . then ( ( { data} ) => {
71+ const hasRepo = data . reduce (
72+ ( found , repo ) => repo . name === 'fixed-test-repo-1' || found ,
73+ false
74+ ) ;
75+
76+ expect ( hasRepo ) . to . be . true ( ) ;
77+ } ) ;
7678} ) ;
7779
7880it ( 'should get team' , function ( ) {
7981return team . getTeam ( )
80- . then ( ( { data} ) => {
81- expect ( data . name ) . to . equal ( 'Fixed Test Team 1' ) ;
82- } ) ;
82+ . then ( ( { data} ) => {
83+ expect ( data . name ) . to . equal ( 'Fixed Test Team 1' ) ;
84+ } ) ;
8385} ) ;
8486
8587it ( 'should check if team manages repo' , function ( ) {
8688return team . isManagedRepo ( testUser . ORGANIZATION , 'fixed-test-repo-1' )
87- . then ( ( result ) => {
88- expect ( result ) . to . be . true ( ) ;
89- } ) ;
89+ . then ( ( result ) => {
90+ expect ( result ) . to . be . true ( ) ;
91+ } ) ;
9092} ) ;
9193} ) ;
9294
9395describe ( 'Team' , function ( ) { // Isolate tests that need a new team per test
9496beforeEach ( function ( ) {
9597return createTestTeam ( )
96- . then ( ( x ) => {
97- team = x . team ;
98- name = x . name ;
99- } ) ;
98+ . then ( ( x ) => {
99+ team = x . team ;
100+ name = x . name ;
101+ } ) ;
100102} ) ;
101103
102104// Test for Team deletion
@@ -108,9 +110,9 @@ describe('Team', function() { // Isolate tests that need a new team per test
108110it ( 'should update team' , function ( ) {
109111const newName = `${ name } -updated` ;
110112return team . editTeam ( { name :newName } )
111- . then ( function ( { data} ) {
112- expect ( data . name ) . to . equal ( newName ) ;
113- } ) ;
113+ . then ( function ( { data} ) {
114+ expect ( data . name ) . to . equal ( newName ) ;
115+ } ) ;
114116} ) ;
115117
116118it ( 'should add membership for a given user' , function ( ) {