diff --git a/packages/info/__tests__/.eslintrc b/packages/info/__tests__/.eslintrc deleted file mode 100644 index 5d4340a351d..00000000000 --- a/packages/info/__tests__/.eslintrc +++ /dev/null @@ -1,7 +0,0 @@ -{ - "root": true, - "extends": ["../.eslintrc"], - "rules": { - "@typescript-eslint/explicit-function-return-type": ["off"] - } -} diff --git a/packages/info/__tests__/index.test.ts b/packages/info/__tests__/index.test.ts deleted file mode 100644 index 7ddb1dae791..00000000000 --- a/packages/info/__tests__/index.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { information } from "../index"; - -describe("info", () => { - it("should return the information of the enviroment", async () => { - const returnedInformation = information(); - const expectedInformation = { - Binaries: ["Node", "Yarn", "npm"], - Browsers: ["Chrome", "Firefox", "Safari"], - System: ["OS", "CPU"], - npmGlobalPackages: ["webpack", "webpack-cli"], - npmPackages: "*webpack*" - }; - - expect(returnedInformation).toEqual(expectedInformation); - }); -});