@@ -180,10 +180,10 @@ describe('authActions', () => {
180180 * the following tests describe the actions that should be
181181 * dispatched the function is invoked
182182 *
183- * *Note*: these tests are run with ```pit ``` because they are async
183+ * *Note*: these tests are run with ```it ``` because they are async
184184 *
185185 */
186- pit ( 'should logout' , ( ) => {
186+ it ( 'should logout' , ( ) => {
187187 const expectedActions = [
188188 { type : LOGOUT_REQUEST } ,
189189 { type : LOGIN_STATE_REGISTER } ,
@@ -196,7 +196,7 @@ describe('authActions', () => {
196196 return store . dispatch ( actions . logout ( ) ) ;
197197 } ) ;
198198
199- pit ( 'should login' , ( ) => {
199+ it ( 'should login' , ( ) => {
200200 const expectedActions = [
201201 { type : LOGIN_REQUEST } ,
202202 { type : LOGIN_STATE_LOGOUT } ,
@@ -207,7 +207,7 @@ describe('authActions', () => {
207207 return store . dispatch ( actions . login ( 'foo' , 'bar' ) ) ;
208208 } ) ;
209209
210- pit ( 'should getSessionToken' , ( ) => {
210+ it ( 'should getSessionToken' , ( ) => {
211211 const expectedActions = [
212212 { type : SESSION_TOKEN_REQUEST } ,
213213 { type : LOGIN_STATE_LOGOUT } ,
@@ -218,7 +218,7 @@ describe('authActions', () => {
218218 return store . dispatch ( actions . getSessionToken ( ) ) ;
219219 } ) ;
220220
221- pit ( 'should signup' , ( ) => {
221+ it ( 'should signup' , ( ) => {
222222 const expectedActions = [
223223 { type : SIGNUP_REQUEST } ,
224224 { type : LOGIN_STATE_LOGOUT } ,
@@ -229,7 +229,7 @@ describe('authActions', () => {
229229 return store . dispatch ( actions . signup ( 'user' , 'email' , 'password' ) ) ;
230230 } ) ;
231231
232- pit ( 'should resetPassword' , ( ) => {
232+ it ( 'should resetPassword' , ( ) => {
233233 const expectedActions = [
234234 { type : RESET_PASSWORD_REQUEST } ,
235235 { type : LOGIN_STATE_LOGIN } ,
@@ -240,7 +240,7 @@ describe('authActions', () => {
240240 return store . dispatch ( actions . resetPassword ( 'email' ) ) ;
241241 } ) ;
242242
243- pit ( 'should deleteSessionToken' , ( ) => {
243+ it ( 'should deleteSessionToken' , ( ) => {
244244 const expectedActions = [
245245 { type : SESSION_TOKEN_REQUEST } ,
246246 { type : SESSION_TOKEN_SUCCESS }
0 commit comments