From ed492c14e744d5d3012eb4f798a4671c58d555f9 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Wed, 17 Apr 2024 20:17:49 +0000 Subject: [PATCH] fix!: move fixtures to @aztec/circuits.js/testing/fixtures --- yarn-project/circuits.js/package.json | 1 + yarn-project/circuits.js/src/tests/index.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/circuits.js/package.json b/yarn-project/circuits.js/package.json index 1c375c3b714..ecb0883e920 100644 --- a/yarn-project/circuits.js/package.json +++ b/yarn-project/circuits.js/package.json @@ -11,6 +11,7 @@ "./hash": "./dest/hash/index.js", "./barretenberg": "./dest/barretenberg/index.js", "./testing": "./dest/tests/index.js", + "./testing/fixtures": "./dest/tests/fixtures.js", "./interfaces": "./dest/interfaces/index.js", "./utils": "./dest/utils/index.js", "./types": "./dest/types/index.js", diff --git a/yarn-project/circuits.js/src/tests/index.ts b/yarn-project/circuits.js/src/tests/index.ts index 4fa91dd0835..e24620a0a23 100644 --- a/yarn-project/circuits.js/src/tests/index.ts +++ b/yarn-project/circuits.js/src/tests/index.ts @@ -1,2 +1 @@ -export * from './fixtures.js'; export * from './factories.js';