Skip to content

Commit

Permalink
Update test names
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol authored Sep 12, 2024
1 parent 17c8996 commit fd16301
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ describe('EventBridge target parameters validation', () => {
}).toThrow('Time must be between 1 and 256 characters, received 257');
});

test('Detail type can be given for a token', () => {
test('validateDetailType works with a token', () => {
// GIVEN
const app = new App();
const stack = new Stack(app, 'TestStack');
Expand Down Expand Up @@ -265,7 +265,7 @@ describe('EventBridge target parameters validation', () => {
});
});

test('Endpoint can be given for a token', () => {
test('validateEndpointId works with a token', () => {
// GIVEN
const app = new App();
const stack = new Stack(app, 'TestStack');
Expand Down Expand Up @@ -294,7 +294,7 @@ describe('EventBridge target parameters validation', () => {
});
});

test('Source can be given for a token', () => {
test('validateSource works with a token', () => {
// GIVEN
const app = new App();
const stack = new Stack(app, 'TestStack');
Expand Down Expand Up @@ -323,7 +323,7 @@ describe('EventBridge target parameters validation', () => {
});
});

test('Time can be given for a token', () => {
test('validateTime works with a token', () => {
// GIVEN
const app = new App();
const stack = new Stack(app, 'TestStack');
Expand Down

0 comments on commit fd16301

Please sign in to comment.