Skip to content

Commit

Permalink
try to keep track of which tests fail on ci/cd
Browse files Browse the repository at this point in the history
-   re: #4
  • Loading branch information
SignpostMarv committed Oct 30, 2024
1 parent b79f83e commit 1c90abf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/lib/TypeDefinitionWriter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,19 @@ import {
} from '../../lib/TypeDefinitionWriter';
import {
docs,
skip_because_docs_dot_json_not_yet_bundled,
} from '../../lib/helpers';

void describe('TypeDefinitionWriter', () => {
void describe('discovery', () => {
for (const version of object_keys(docs.docs_versions)) {
if (
skip_because_docs_dot_json_not_yet_bundled
&& 'common' !== version
) {
continue;
}

void it (`${version}: does not throw`, () => {
const instance = new TypeDefinitionWriter(docs, version);

Expand Down

0 comments on commit 1c90abf

Please sign in to comment.