mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-25 11:58:11 +08:00
create e2e test for auth buttons (#1907)
This PR adds a few helpful additions regarding authentication. Changes: * e2e tests are now run on test_oauth via a passed config.yaml * node dev server correctly handles `/login` and `/logout` endpoints to make developing for auth easier * Introduced auth e2e tests to check that buttons display and work
This commit is contained in:
@@ -51,7 +51,11 @@ const Auth = React.memo((props) => {
|
||||
|
||||
return (
|
||||
<Popover content={PopoverContent}>
|
||||
<Button className={styles.menubarButton} style={{ padding: 0 }}>
|
||||
<Button
|
||||
data-testid="user-info"
|
||||
className={styles.menubarButton}
|
||||
style={{ padding: 0 }}
|
||||
>
|
||||
{userinfo?.picture ? (
|
||||
<img alt="profile" src={userinfo?.picture} />
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user