UNPKG
founder-mode
Version:
latest (1.0.1)
1.0.1
1.0.0
A simple utility to activate Founder Mode in your projects.
founder-mode
/
index.test.js
9 lines
(7 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// index.test.js
const
{ activateFounderMode } =
require
(
'./index'
);
describe
(
'activateFounderMode'
,
() =>
{
test
(
'activates Founder Mode'
,
() =>
{
expect
(
activateFounderMode
()).
toBe
(
true
); }); });