mirror of
https://github.com/jlengrand/push-adyen-collections-to-postman-javascript-action.git
synced 2026-03-10 08:41:23 +00:00
10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
import { test } from 'uvu';
|
|
import * as assert from 'uvu/assert';
|
|
|
|
import {list} from '../sort.js';
|
|
test('sort.list', () => {
|
|
assert.equal(list(), []);
|
|
});
|
|
|
|
|
|
test.run(); |