mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 01:56:27 +08:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
import { getDataCenter } from './utils.js';
|
|
|
|
test('can init data center', async () => {
|
|
const dataCenter = await getDataCenter();
|
|
|
|
expect(dataCenter).toBeTruthy();
|
|
});
|