mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
* test: first runnable editor e2e * test: first smoke testing * fix: a bug found by editor e2e * test: add completion e2e testing * test: add diagnostics and focus e2e testing * feat: test extension in ci * dev: remove one useless dependency * dev: setup x server for testing * dev: recover stable test * test: add multiple preview e2e testing
8 lines
120 B
Typst
8 lines
120 B
Typst
// contains: aa,aab,aac,aabc
|
|
|
|
#let aa() = 1;
|
|
#let aab() = 1;
|
|
#let aac() = 1;
|
|
#let aabc() = 1;
|
|
|
|
#aac(/* range -2..0 */);
|