diff --git a/package.json b/package.json index fb853304..b0883579 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,8 @@ "lint": "tslint --project ./tsconfig.json -t stylish", "start:dev": "yarn build && node lib/index.js", "test": "ts-mocha --project ./tsconfig.json test/**/*.ts", - "test-integration": "NODE_ENV=harness ts-mocha --require test/integration/fixtures.ts --project ./tsconfig.json test/integration/**/*Test.ts" + "test:integration": "NODE_ENV=harness ts-mocha --require test/integration/fixtures.ts --project ./tsconfig.json test/integration/**/*Test.ts", + "test:manual": "NODE_ENV=harness ts-node test/integration/manualLaunchScript.ts" }, "devDependencies": { "@types/axios": "^0.14.0", diff --git a/test/integration/mjolnirSetupUtils.ts b/test/integration/mjolnirSetupUtils.ts index eb3b8185..4fd2059c 100644 --- a/test/integration/mjolnirSetupUtils.ts +++ b/test/integration/mjolnirSetupUtils.ts @@ -15,13 +15,10 @@ limitations under the License. */ import { MatrixClient, - Permalinks, PantalaimonClient, MemoryStorageProvider } from "matrix-bot-sdk"; import config from "../../src/config"; -import * as HmacSHA1 from 'crypto-js/hmac-sha1'; -import axios from 'axios'; import * as path from 'path'; import * as fs from 'fs/promises'; import { setupMjolnir } from '../../src/setup';