Skip to content

Commit fa64ac4

Browse files
committed
cleanup
1 parent 0956982 commit fa64ac4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/schema-convertors/internalToExpanded.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RELAXED_EJSON_DEFINITIONS } from './internalToStandard';
44

55
describe('internalSchemaToExpanded', async function() {
66
describe('Converts: ', async function() {
7-
it.only('various types', async function() {
7+
it('various types', async function() {
88
const internal = {
99
count: 1,
1010
fields: [

src/schema-convertors/internalToExpanded.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { JSONSchema4TypeName } from 'json-schema';
2-
import { BaseSchemaType, ArraySchemaType, DocumentSchemaType, Schema as InternalSchema, SchemaType, SchemaField } from '../schema-analyzer';
1+
import { ArraySchemaType, DocumentSchemaType, Schema as InternalSchema, SchemaType, SchemaField } from '../schema-analyzer';
32
import { type ExpandedJSONSchema } from '../types';
43
import { InternalTypeToStandardTypeMap, RELAXED_EJSON_DEFINITIONS } from './internalToStandard';
54
import { InternalTypeToBsonTypeMap } from './internalToMongoDB';

test/integration/generateAndValidate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const bsonDocuments = [{
2727
}
2828
}];
2929

30-
describe.only('Documents -> Generate schema -> Validate Documents against the schema', function() {
30+
describe('Documents -> Generate schema -> Validate Documents against the schema', function() {
3131
it('Standard JSON Schema with Relaxed EJSON', async function() {
3232
const ajv = new Ajv2020();
3333
// First we get the JSON schema from BSON

0 commit comments

Comments
 (0)