diff --git a/package.json b/package.json index 59d944d02..e945885b5 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "preinstall": "npx only-allow yarn", "format": "prettier --write './{config,contracts,eth-sdk,scripts,tasks,test,utils}/**/*.{ts,js,sol}'", - "test": "hardhat test", + "test": "hardhat test ./test/setup", "compile": "bash ./compile.sh", "deploy": "hardhat compile && hardhat deploy:AngelProtocol", "sdks": "yarn eth-sdk", diff --git a/test/utils/setup/assertions.ts b/test/setup/assertions.ts similarity index 100% rename from test/utils/setup/assertions.ts rename to test/setup/assertions.ts diff --git a/test/setup/index.ts b/test/setup/index.ts new file mode 100644 index 000000000..619bfce09 --- /dev/null +++ b/test/setup/index.ts @@ -0,0 +1 @@ +import "./setup"; diff --git a/test/utils/setup/setup.test.ts b/test/setup/setup.ts similarity index 100% rename from test/utils/setup/setup.test.ts rename to test/setup/setup.ts