![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@event-scout/client
Advanced tools
Create and query event trails using EventScout.
This repository is part of EventScout.
pnpm add -D @event-scout/client
or if using yarn
yarn add --dev @event-scout/client
or if using npm
npm install --save-dev @event-scout/client
In order to use the EventScout client, you will need:
endpoint
exported by @event-scout/constructregion
in which you run your testscredentials
. Check out the AWS SDK v3 docs on how to build credentials.Instantiate the client:
import { EventScoutClient } from '@event-scout/client';
const eventScoutClient = new EventScoutClient({
credentials,
region,
endpoint: eventScoutEndpoint,
});
A trail is a list of events with a certain patterns, that you can dynamically create.
At the beginning of the test, start a trail with a custom pattern:
beforeAll(
async () => {
await eventScoutClient.start({
eventPattern: {
source: ['my-pattern'],
'detail-type': ['MY_DETAIL_TYPE'],
},
});
},
30 * 1000, // 30s timeout
);
You can put any valid EventBridge pattern here, including content filtering. Check the AWS docs for more details.
⚠ In order for the resources to be properly activated, the EventScout client will wait for 20 seconds before returning. We advise to set a 30 seconds timeout on the beforeAll
method.
In your tests, simply call the .query()
method to retrieve events in the trail.
const messages = await eventScoutClient.query();
This will return all the events in the trail! You are then free to make assertions on them.
At the end of the test, call the .stop()
method in afterAll
:
afterAll(async () => {
await eventScoutClient.stop();
});
FAQs
EventScout client
The npm package @event-scout/client receives a total of 12 weekly downloads. As such, @event-scout/client popularity was classified as not popular.
We found that @event-scout/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.