-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* authSlice에서 requestGoogleSignIn 함수에 try catch를 제거함
- Loading branch information
Showing
6 changed files
with
24 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ import { | |
postSignup, | ||
postLogout, | ||
uploadProductImages, | ||
postGoogleSignIn, | ||
} from './api'; | ||
|
||
import products, { userProducts } from '../../fixtures/products'; | ||
|
@@ -136,14 +135,6 @@ describe('api', () => { | |
}); | ||
}); | ||
|
||
describe('postGoogleSignin', () => { | ||
it('returns user', async () => { | ||
const data = await postGoogleSignIn(); | ||
|
||
expect(data).toEqual(logInUser); | ||
}); | ||
}); | ||
|
||
describe('postSignup', () => { | ||
it('returns sign up user', async () => { | ||
const email = '[email protected]'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters