Skip to content

Commit

Permalink
Improved test names
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Jun 29, 2020
1 parent 94d89e4 commit f755bfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/apm_api_integration/trial/tests/service_maps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function serviceMapsApiTests({ getService }: FtrProviderContext)

describe('Service Maps', () => {
describe('when there is no data', () => {
it('returns data', async () => {
it('returns empty list', async () => {
const response = await supertest.get(
'/api/apm/service-map?start=2020-06-28T10%3A24%3A46.055Z&end=2020-06-29T10%3A24%3A46.055Z'
);
Expand All @@ -29,7 +29,7 @@ export default function serviceMapsApiTests({ getService }: FtrProviderContext)
before(() => esArchiver.load('8.0.0'));
after(() => esArchiver.unload('8.0.0'));

it('returns data', async () => {
it('returns service map elements', async () => {
const response = await supertest.get(
'/api/apm/service-map?start=2020-06-28T10%3A24%3A46.055Z&end=2020-06-29T10%3A24%3A46.055Z'
);
Expand Down

0 comments on commit f755bfb

Please sign in to comment.