UNPKG
@daisugi/land
Version:
latest (0.3.2)
0.3.2
0.3.1
0.3.0
0.1.2
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
Daisugiland is an aggregation of tools for building composable applications.
daisugiland/daisugi
@daisugi/land
/
src
/
__tests__
/
land_test.ts
11 lines
(9 loc)
•
236 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
assert
from
'node:assert/strict'
;
import
{ describe, it }
from
'node:test'
;
describe
(
'Land'
,
() =>
{
describe
(
'success'
,
() =>
{
it
(
'should return expected value'
,
() =>
{ assert.
equal
(
true
,
true
); }); }); });