Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit dfb6acd2 authored by Simon Chan's avatar Simon Chan
Browse files

chore: switch to node test

parent 67a07e2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "explorer.sortOrder": "mixed",
    "prettier.prettierPath": "./common/temp/node_modules/prettier/index.cjs",
    "prettier.prettierPath": "./node_modules/prettier/index.cjs",
    "cSpell.numSuggestions": 4,
    "cSpell.ignoreRegExpList": [
        "0x[0-9a-f_]+"
+0 −1
Original line number Diff line number Diff line
@@ -45,7 +45,6 @@
        "@types/node": "^20.14.9",
        "@yume-chan/eslint-config": "workspace:^1.0.0",
        "@yume-chan/tsconfig": "workspace:^1.0.0",
        "jest": "^30.0.0-alpha.4",
        "prettier": "^3.3.3",
        "typescript": "^5.5.3"
    }
+4 −4
Original line number Diff line number Diff line
@@ -4,17 +4,17 @@
        "lib": [
            "ESNext",
            "DOM"
        ],
        ]
    },
    "references": [
        {
            "path": "../../libraries/adb/tsconfig.build.json"
            "path": "../../libraries/adb-server-node-tcp/tsconfig.build.json"
        },
        {
            "path": "../../libraries/adb-server-node-tcp/tsconfig.build.json"
            "path": "../../libraries/adb/tsconfig.build.json"
        },
        {
            "path": "../../libraries/stream-extra/tsconfig.build.json"
        }
    ],
    ]
}
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@
    "references": [
        {
            "path": "./tsconfig.build.json"
        },
        }
    ]
}
+2 −5
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@
        "build:watch": "tsc -b tsconfig.build.json",
        "lint": "run-eslint && prettier src/**/*.ts --write --tab-width 4",
        "prepublishOnly": "npm run build",
        "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" TS_JEST_DISABLE_VER_CHECKER=true jest --coverage"
        "test": "run-test"
    },
    "dependencies": {
        "@types/w3c-web-usb": "^1.0.10",
@@ -39,14 +39,11 @@
        "@yume-chan/struct": "workspace:^0.0.24"
    },
    "devDependencies": {
        "@jest/globals": "^30.0.0-alpha.4",
        "@types/node": "^20.14.9",
        "@yume-chan/eslint-config": "workspace:^1.0.0",
        "@yume-chan/test-runner": "workspace:^1.0.0",
        "@yume-chan/tsconfig": "workspace:^1.0.0",
        "cross-env": "^7.0.3",
        "jest": "^30.0.0-alpha.4",
        "prettier": "^3.3.3",
        "ts-jest": "^29.2.2",
        "typescript": "^5.5.3"
    }
}
Loading