Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions test/__snapshots__/verified-automations.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`idendity-replicant (automation) > analysis 'automation 1' 1`] = `
exports[`identity-replicant (automation) > analysis 'automation 1' 1`] = `
{
"classification": "automation",
"flags": [
Expand Down Expand Up @@ -43,7 +43,7 @@ exports[`idendity-replicant (automation) > analysis 'automation 1' 1`] = `
}
`;

exports[`idendity-replicant (automation) > analysis 'automation 2' 1`] = `
exports[`identity-replicant (automation) > analysis 'automation 2' 1`] = `
{
"classification": "automation",
"flags": [
Expand Down Expand Up @@ -76,7 +76,7 @@ exports[`idendity-replicant (automation) > analysis 'automation 2' 1`] = `
}
`;

exports[`idendity-replicant (automation) > analysis 'automation 3' 1`] = `
exports[`identity-replicant (automation) > analysis 'automation 3' 1`] = `
{
"classification": "automation",
"flags": [
Expand Down Expand Up @@ -104,7 +104,7 @@ exports[`idendity-replicant (automation) > analysis 'automation 3' 1`] = `
}
`;

exports[`idendity-replicant (automation) > analysis 'automation 4' 1`] = `
exports[`identity-replicant (automation) > analysis 'automation 4' 1`] = `
{
"classification": "organic",
"flags": [],
Expand All @@ -116,7 +116,7 @@ exports[`idendity-replicant (automation) > analysis 'automation 4' 1`] = `
}
`;

exports[`idendity-replicant (organic) > analysis 'automation 1' 1`] = `
exports[`identity-replicant (organic) > analysis 'automation 1' 1`] = `
{
"classification": "organic",
"flags": [],
Expand All @@ -128,7 +128,7 @@ exports[`idendity-replicant (organic) > analysis 'automation 1' 1`] = `
}
`;

exports[`idendity-replicant (organic) > analysis 'automation 2' 1`] = `
exports[`identity-replicant (organic) > analysis 'automation 2' 1`] = `
{
"classification": "organic",
"flags": [],
Expand Down
4 changes: 2 additions & 2 deletions test/verified-automations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function getFolder(folderName: "automation" | "organic") {
}

const automationFixtures = getFolder("automation");
describe("idendity-replicant (automation)", () => {
describe("identity-replicant (automation)", () => {
it.each(automationFixtures)("analysis $1", (fixture) => {
const identity = identifyReplicant({
createdAt: fixture.user.created_at,
Expand All @@ -31,7 +31,7 @@ describe("idendity-replicant (automation)", () => {
});

const organicFixtures = getFolder("organic");
describe("idendity-replicant (organic)", () => {
describe("identity-replicant (organic)", () => {
it.each(organicFixtures)("analysis $1", (fixture) => {
const identity = identifyReplicant({
createdAt: fixture.user.created_at,
Expand Down
Loading