UNPKG
clean-code-metrics
Version:
latest (0.0.12)
0.0.12
0.0.11
0.0.10
metrics for clean code
github.com/Xanlantos/clean-code
Xanlantos/clean-code
clean-code-metrics
/
src
/
TEST
/
basic.test.ts
9 lines
(8 loc)
•
176 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
describe
(
"Tests are working"
,
() =>
{
it
(
"true = true"
,
() =>
{
expect
(
true
).
toBe
(
true
); });
it
(
"snapshot"
,
() =>
{
expect
(
true
).
toMatchInlineSnapshot
(
`true`
); }); });