Files
liquid-stacking/tests/errors.test.ts
2024-03-20 15:42:56 +01:00

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