We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c067a1 commit 82fcda9Copy full SHA for 82fcda9
packages/compass-schema-validation/src/stores/store.spec.ts
@@ -82,6 +82,11 @@ const schemaAccessor = {
82
setTimeout(() => resolve({ required: ['prop1'] }), 100); // waiting to give abort a chance
83
});
84
},
85
+ getInternalSchema: () => {
86
+ return new Promise((resolve) => {
87
+ setTimeout(() => resolve({ required: ['prop1'] }), 100); // waiting to give abort a chance
88
+ });
89
+ },
90
};
91
92
describe('Schema Validation Store', function () {
0 commit comments