diff --git a/e2e/preference/get.spec.ts b/e2e/preference/get.spec.ts index 390c9801..8a4a01dd 100644 --- a/e2e/preference/get.spec.ts +++ b/e2e/preference/get.spec.ts @@ -3,7 +3,7 @@ import MercadoPago, { Preference } from '@src/index'; import { config } from '../e2e.config'; describe('Preference IT, get', () => { - test('should get preference with success', async () => { + test('should get preference and match response object', async () => { const client = new MercadoPago({ accessToken: config.access_token, options: { timeout: 5000 } }); const preference = new Preference(client); diff --git a/e2e/preference/search.spec.ts b/e2e/preference/search.spec.ts index a7ebc4ad..0fb38a85 100644 --- a/e2e/preference/search.spec.ts +++ b/e2e/preference/search.spec.ts @@ -2,7 +2,7 @@ import MercadoPago, { Preference } from '@src/index'; import { config } from '../e2e.config'; describe('Preference IT, search', () => { - test('should search a request with success', async () => { + test('should search a request and match response object', async () => { const client = new MercadoPago({ accessToken: config.access_token, options: { timeout: 5000 } }); const preference = new Preference(client); diff --git a/e2e/preference/update.spec.ts b/e2e/preference/update.spec.ts index 4817d053..3a7aeca5 100644 --- a/e2e/preference/update.spec.ts +++ b/e2e/preference/update.spec.ts @@ -4,7 +4,7 @@ import MercadoPago, { Preference } from '@src/index'; import { config } from '../e2e.config'; describe('Preference IT, update', () => { - test('should update request with success', async () => { + test('should update request and match response object', async () => { const client = new MercadoPago({ accessToken: config.access_token }); const preference = new Preference(client);