mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
'use strict';
|
|
|
|
const common = require('..');
|
|
const assert = require('assert').strict;
|
|
|
|
assert.strictEqual(common(), 'Hello from common');
|
|
console.info('common tests passed');
|