forked from LeenkxTeam/Kmake
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
'use strict';
|
|
const { suite, test } = require('node:test');
|
|
|
|
suite('imported suite', () => {
|
|
test('imported test', (t) => {
|
|
t.assert.snapshot({ foo: 1, bar: 2 });
|
|
});
|
|
});
|