Skip to content

Commit

Permalink
rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brunacamposxx committed Oct 10, 2023
1 parent 48edc37 commit ad7e5b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/preference/get.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion e2e/preference/search.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion e2e/preference/update.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit ad7e5b4

Please sign in to comment.