
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@flowprompter/jest
Advanced tools
Testing and developing prompts has traditionally been tricky because the output a typical LLM creates is fuzzy and non deterministic but with Floe Prompter you can simply manage test regressions using Jest without worrying about output variants that throw your tests off. This works because Flow Prompter delivers a set of Jest matchers that use embeddings to test for semantic similarities between strings. With these matchers, you can easily test if two strings are similar in meaning or compare the similarity of your prompt outputs.
await expect("What a fine day!").toBeMoreSimilarTo(
"This weather is simply delightful.",
"It is a fine but weathered day bed."
);
You can install this package using your favourite npm client:
| Client | Command |
|---|---|
| npm | npm install --save-dev @flowprompter/jest |
| pnpm | pnpm add -D @flowprompter/jest |
| yarn | yarn add -D @flowprompter/jest |
To use these matchers, simply import the setupMatchers function and pass the output to expect.extend in your setup file or before your tests. Then simply use them with Jest's built-in expect function.
import {setupMatchers} from "@flowprompter/jest";
// Setup your matchers before your tests run
expect.extend(setupMatchers({
openAiApiKey: 'sk-abc123def456...987xyz'
}));
describe('String similarity tests', () => {
test('Hello -> Hi', async () => {
await expect('Hello').toBeSimilarTo('Hi');
});
test('Hello -> Yellow', async () => {
await expect('Hello').toBeSimilarTo('Yellow', 0.8);
});
test('Hello is more similar to Hi than Whistle or Lion', async () => {
await expect('Hello').toBeMoreSimilarTo('Hi', ['Whistle', 'Lion']);
});
});
toBeMoreSimilarTo(expected: string, others: string[] | string)Checks if the tested string is more similar in meaning to the expected string than it is to any of the other strings provided. The others parameter can be a single string or an array of strings.
test('Hello is more similar to Hi than Whistle or Lion', async () => {
await expect('Hello').toBeMoreSimilarTo('Hi', ['Whistle', 'Lion']);
});
toBeSimilarTo(expected: string, threshold?: number)Checks if the tested string is similar in meaning to the expected string. The optional threshold parameter sets the minimum similarity score required for the test to pass (default is 0.85).
test('Hello -> Hi', async () => {
await expect('Hello').toBeSimilarTo('Hi');
});
All embedding calls are only made once to save tokens and are cached to a file: ~/.config/flowprompter/.fpjembeddings. On windows this file will be something like C:\Users\{username}\AppData\Local\flowprompter\.fpjembeddings.
To configure the file location use the embeddingCachePath option:
import {setupMatchers} from "@flowprompter/jest";
// Setup your matchers before your tests run
expect.extend(setupMatchers({
// other config...
embeddingCachePath: "/path/to/my/embeddings/cache"
}));
Contributions are welcome! If you find a bug or have a feature request, please open an issue on the GitHub repository. If you'd like to contribute code, please fork the repository and submit a pull request.
pnpm install.env.example to .env file and supply your OPENAI_API_KEYpnpm testFAQs
Prompt engineering toolkit for Jest
We found that @flowprompter/jest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.