mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 11:13:45 -05:00
Import USER_ID and USER_EMAIL in ShareProjectModal test file from EditorProviders test mock
GitOrigin-RevId: e45bb0806cc4e0a4b315b8098da6e628c7f427d1
This commit is contained in:
parent
d84ba96ecb
commit
b245617b61
2 changed files with 10 additions and 4 deletions
|
@ -15,7 +15,11 @@ import {
|
||||||
cleanUpContext,
|
cleanUpContext,
|
||||||
} from '../../../helpers/render-with-context'
|
} from '../../../helpers/render-with-context'
|
||||||
import * as locationModule from '../../../../../frontend/js/features/share-project-modal/utils/location'
|
import * as locationModule from '../../../../../frontend/js/features/share-project-modal/utils/location'
|
||||||
import { EditorProviders } from '../../../helpers/editor-providers'
|
import {
|
||||||
|
EditorProviders,
|
||||||
|
USER_EMAIL,
|
||||||
|
USER_ID,
|
||||||
|
} from '../../../helpers/editor-providers'
|
||||||
|
|
||||||
describe('<ShareProjectModal/>', function () {
|
describe('<ShareProjectModal/>', function () {
|
||||||
const project = {
|
const project = {
|
||||||
|
@ -26,8 +30,8 @@ describe('<ShareProjectModal/>', function () {
|
||||||
compileGroup: 'standard',
|
compileGroup: 'standard',
|
||||||
},
|
},
|
||||||
owner: {
|
owner: {
|
||||||
_id: 'member_author',
|
_id: USER_ID,
|
||||||
email: 'project-owner@example.com',
|
email: USER_EMAIL,
|
||||||
},
|
},
|
||||||
members: [],
|
members: [],
|
||||||
invites: [],
|
invites: [],
|
||||||
|
|
|
@ -17,9 +17,11 @@ import { DetachCompileProvider } from '../../../frontend/js/shared/context/detac
|
||||||
// using magic strings
|
// using magic strings
|
||||||
export const PROJECT_ID = 'project123'
|
export const PROJECT_ID = 'project123'
|
||||||
export const PROJECT_NAME = 'project-name'
|
export const PROJECT_NAME = 'project-name'
|
||||||
|
export const USER_ID = '123abd'
|
||||||
|
export const USER_EMAIL = 'testuser@example.com'
|
||||||
|
|
||||||
export function EditorProviders({
|
export function EditorProviders({
|
||||||
user = { id: '123abd', email: 'testuser@example.com' },
|
user = { id: USER_ID, email: USER_EMAIL },
|
||||||
projectId = PROJECT_ID,
|
projectId = PROJECT_ID,
|
||||||
rootDocId = '_root_doc_id',
|
rootDocId = '_root_doc_id',
|
||||||
socket = {
|
socket = {
|
||||||
|
|
Loading…
Reference in a new issue