UNPKG
@shower/cli
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
0.5.2
0.5.1
0.5.0
0.4.0
0.3.1
0.3.0
0.2.9
0.2.8
0.2.7
0.2.6
Command line interface for Shower
github.com/shower/shower/tree/main/packages/cli
shower/shower
@shower/cli
/
core
/
command
/
__tests__
/
serve.test.js
10 lines
(8 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ describe, it }
from
'node:test'
;
import
assert
from
'node:assert/strict'
;
import
{ handler
as
serve }
from
'../serve.js'
;
describe
(
'serve'
,
() =>
{
it
(
'Must be function'
,
() =>
{ assert.
equal
(
typeof
serve,
'function'
); }); });