mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
'use strict';
|
|
|
|
const systemRunning = require('..');
|
|
const assert = require('assert').strict;
|
|
|
|
assert.strictEqual(systemRunning(), 'Hello from systemRunning');
|
|
console.info('systemRunning tests passed');
|