File tree Expand file tree Collapse file tree 6 files changed +40
-50
lines changed
Expand file tree Collapse file tree 6 files changed +40
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+
2+ describe ( 'CLI tests' , ( ) => {
3+ // Very basic test for CLI functionality
4+ it ( 'CLI imports should compile correctly' , ( ) => {
5+ // no tests right now
6+ expect ( true ) . toBe ( true ) ;
7+ } ) ;
8+ } ) ;
Original file line number Diff line number Diff line change 1+
2+ describe ( 'CLI tests' , ( ) => {
3+ // Very basic test for CLI functionality
4+ it ( 'CLI imports should compile correctly' , ( ) => {
5+ // no tests right now
6+ expect ( true ) . toBe ( true ) ;
7+ } ) ;
8+ } ) ;
Original file line number Diff line number Diff line change 1+ import { spawnSync } from 'child_process' ;
2+ import { join } from 'path' ;
3+ import { existsSync } from 'fs' ;
4+
5+ describe ( 'Server tests' , ( ) => {
6+ // Very basic test for server functionality
7+ it ( 'Server imports should compile correctly' , ( ) => {
8+ // no-op tests right now
9+ expect ( true ) . toBe ( true ) ;
10+ } ) ;
11+
12+ } ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import { spawnSync } from 'child_process' ;
2+ import { join } from 'path' ;
3+ import { existsSync } from 'fs' ;
4+
5+ describe ( 'Server tests' , ( ) => {
6+ // Very basic test for server functionality
7+ it ( 'Server imports should compile correctly' , ( ) => {
8+ // no-op tests right now
9+ expect ( true ) . toBe ( true ) ;
10+ } ) ;
11+
12+ } ) ;
You can’t perform that action at this time.
0 commit comments