Skip to content

Commit ad7e5b4

Browse files
committed
rename tests
1 parent 48edc37 commit ad7e5b4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/preference/get.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import MercadoPago, { Preference } from '@src/index';
33
import { config } from '../e2e.config';
44

55
describe('Preference IT, get', () => {
6-
test('should get preference with success', async () => {
6+
test('should get preference and match response object', async () => {
77
const client = new MercadoPago({ accessToken: config.access_token, options: { timeout: 5000 } });
88
const preference = new Preference(client);
99

e2e/preference/search.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import MercadoPago, { Preference } from '@src/index';
22
import { config } from '../e2e.config';
33

44
describe('Preference IT, search', () => {
5-
test('should search a request with success', async () => {
5+
test('should search a request and match response object', async () => {
66
const client = new MercadoPago({ accessToken: config.access_token, options: { timeout: 5000 } });
77
const preference = new Preference(client);
88

e2e/preference/update.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import MercadoPago, { Preference } from '@src/index';
44
import { config } from '../e2e.config';
55

66
describe('Preference IT, update', () => {
7-
test('should update request with success', async () => {
7+
test('should update request and match response object', async () => {
88
const client = new MercadoPago({ accessToken: config.access_token });
99
const preference = new Preference(client);
1010

0 commit comments

Comments
 (0)