Skip to content

Commit 777aa9d

Browse files
committed
identify tracing tests as tracing tests in serverless
1 parent 17e641c commit 777aa9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/serverless/test/awsservices.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('AWSServices', () => {
2323
nock.restore();
2424
});
2525

26-
describe('S3', () => {
26+
describe('S3 tracing', () => {
2727
const s3 = new AWS.S3({ accessKeyId: '-', secretAccessKey: '-' });
2828

2929
test('getObject', async () => {

packages/serverless/test/google-cloud-grpc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function mockHttp2Session(): FakeSession {
7676
return session;
7777
}
7878

79-
describe('GoogleCloudGrpc', () => {
79+
describe('GoogleCloudGrpc tracing', () => {
8080
beforeAll(() => {
8181
new GoogleCloudGrpc().setupOnce();
8282
});

packages/serverless/test/google-cloud-http.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { GoogleCloudHttp } from '../src/google-cloud-http';
1313
* Thanks to this, we don't have to do more magic than necessary. Just add and export desired method and assert on it.
1414
*/
1515

16-
describe('GoogleCloudHttp', () => {
16+
describe('GoogleCloudHttp tracing', () => {
1717
beforeAll(() => {
1818
new GoogleCloudHttp().setupOnce();
1919
});

0 commit comments

Comments
 (0)