Add fleet groups, agent screenshots, deploy guards, and Crucible polish.

This commit is contained in:
AetherForge
2026-06-02 20:51:52 -07:00
parent 01d76b3730
commit 41b5ec7a88
66 changed files with 1773 additions and 388 deletions

View File

@@ -0,0 +1,14 @@
import { describe, it, expect } from 'vitest';
import { pickMysticWord, wordColumnSpan, MYSTIC_WORD_DROPS } from './matrixRainEffects';
describe('matrixRainEffects', () => {
it('pickMysticWord returns known words', () => {
const w = pickMysticWord();
expect(MYSTIC_WORD_DROPS).toContain(w);
});
it('wordColumnSpan matches string length', () => {
expect(wordColumnSpan('DESTROY')).toBe(7);
expect(wordColumnSpan('BLACK MAGIC')).toBe(11);
});
});