Skip to content

Commit 133ee67

Browse files
committed
feat: Updated tests
1 parent 904e5de commit 133ee67

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/compatibility-suites/openapi/pathItems.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const PATH_ITEM_PATH = [
1212

1313
describe('Openapi3.1 PathItems', () => {
1414

15-
test('Add method in path item', async () => {
15+
test('Add method in pathitem', async () => {
1616
const testId = 'add-method-in-pathitem'
1717
const result = await compareFiles(SUITE_ID, testId)
1818
expect(result).toEqual(diffsMatcher([
@@ -24,13 +24,13 @@ describe('Openapi3.1 PathItems', () => {
2424
]))
2525
})
2626

27-
test('Add unused method in path item', async () => {
27+
test('Add unused method in pathitem', async () => {
2828
const testId = 'add-unused-method-in-pathitem'
2929
const result = await compareFiles(SUITE_ID, testId)
3030
expect(result).toEqual([])
3131
})
3232

33-
test('Remove method in path item', async () => {
33+
test('Remove method in pathitem', async () => {
3434
const testId = 'remove-method-in-pathitem'
3535
const result = await compareFiles(SUITE_ID, testId)
3636
expect(result).toEqual(diffsMatcher([
@@ -42,13 +42,13 @@ describe('Openapi3.1 PathItems', () => {
4242
]))
4343
})
4444

45-
test('Replace inline path item to ref', async () => {
45+
test('Replace inline pathitem to ref', async () => {
4646
const testId = 'replace-inline-pathitem-to-ref'
4747
const result = await compareFiles(SUITE_ID, testId)
4848
expect(result).toEqual([])
4949
})
5050

51-
test('Replace ref path item to inline', async () => {
51+
test('Replace ref pathitem to inline', async () => {
5252
const testId = 'replace-ref-pathitem-to-inline'
5353
const result = await compareFiles(SUITE_ID, testId)
5454
expect(result).toEqual([])

0 commit comments

Comments
 (0)