Files
push-adyen-collections-to-p…/tests/sort.js
2023-03-08 14:53:39 +01:00

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();