2026-04-12 21:04:38 +08:00
|
|
|
import { describe, it, expect } from 'vitest';
|
2026-04-17 10:20:04 +08:00
|
|
|
import data from '@/samples/slay-the-spire-like/data';
|
2026-04-12 21:04:38 +08:00
|
|
|
|
2026-04-17 10:20:04 +08:00
|
|
|
describe('data import', () => {
|
|
|
|
|
it('should import properly', () => {
|
|
|
|
|
expect(data.desert.effects).toBeDefined();
|
2026-04-15 16:28:18 +08:00
|
|
|
});
|
|
|
|
|
});
|