mirror of
https://github.com/zhigang1992/liquid-stacking.git
synced 2026-01-12 22:48:34 +08:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
import { describe, it } from 'vitest';
|
|
import { createErrorsTable } from '../scripts/lib/error-codes.ts';
|
|
|
|
describe('readme', () => {
|
|
it('should have the correct error code table', () => {
|
|
createErrorsTable(simnet, true);
|
|
// should not throw an error
|
|
});
|
|
});
|