fix: test

This commit is contained in:
anastasiia-developer 2022-05-10 15:35:21 +03:00
parent 38844f683e
commit 02759d98ad
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ describe('build', () => {
expect(err.toString()).toContain('{"options":{"disableSearch":"true"}');
}
expect(result).toContain('Found .redocly.yaml and use options from features.openapi');
expect(result).toContain('Found .redocly.yaml and using features.openapi options');
expect(result).toContain('bundled successfully');
});
});

View File

@ -20,7 +20,7 @@ describe('build with inline options', () => {
const out = r.stdout.toString('utf-8');
const err = r.stderr.toString('utf-8');
const result = `${out}\n${err}`;
expect(result).not.toContain('Found .redocly.yaml and use options from features.openapi');
expect(result).not.toContain('Found .redocly.yaml and using features.openapi options');
expect(result).toContain('bundled successfully');
try {