mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 11:06:25 +08:00
build: fix nx.json (#2951)
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
/**
|
||||
* @vitest-environment node
|
||||
*/
|
||||
import { loginResponseSchema } from '@affine/workspace/affine/login';
|
||||
import type { affineApis as API } from '@affine/workspace/affine/shared';
|
||||
import { beforeAll, describe, expect, it, vi } from 'vitest';
|
||||
|
||||
let affineApis: typeof API;
|
||||
|
||||
beforeAll(async () => {
|
||||
// @ts-expect-error
|
||||
globalThis.window = undefined;
|
||||
affineApis = (await import('@affine/workspace/affine/shared')).affineApis;
|
||||
});
|
||||
|
||||
describe('apis', () => {
|
||||
it('should defined', async () => {
|
||||
expect(affineApis).toBeDefined();
|
||||
expect(affineApis).toBe(globalThis.AFFINE_APIS);
|
||||
});
|
||||
|
||||
it('login mock user', async () => {
|
||||
const setItem = vi.fn((key: string, value: unknown) => {
|
||||
expect(key).toBe('affine-login-v2');
|
||||
expect(value).toBeTypeOf('string');
|
||||
loginResponseSchema.parse(JSON.parse(value as string));
|
||||
});
|
||||
vi.stubGlobal('localStorage', {
|
||||
setItem,
|
||||
});
|
||||
expect(globalThis.AFFINE_DEBUG).toBeDefined();
|
||||
expect(globalThis.AFFINE_DEBUG.loginMockUser1).toBeTypeOf('function');
|
||||
expect(globalThis.AFFINE_DEBUG.loginMockUser2).toBeTypeOf('function');
|
||||
await (globalThis.AFFINE_DEBUG.loginMockUser1 as () => Promise<unknown>)();
|
||||
await (globalThis.AFFINE_DEBUG.loginMockUser2 as () => Promise<unknown>)();
|
||||
expect(setItem).toBeCalledTimes(2);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user