From cdf870de9545c0415868ce29419687e906cf33ec Mon Sep 17 00:00:00 2001 From: Sonny Piers Date: Fri, 20 Dec 2024 16:06:45 +0100 Subject: [PATCH] f --- Makefile | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 61388dba..fb4cb526 100644 --- a/Makefile +++ b/Makefile @@ -13,13 +13,13 @@ test: cd packages/xmpp.js/ && npm run prepublish npm install node bundle.js - ./node_modules/.bin/ava + npx jest make lint make bundlesize ci: npm install - ./node_modules/.bin/ava + npx jest make lint make restart ./node_modules/.bin/lerna run prepublish diff --git a/package.json b/package.json index cdd1abfe..873f5847 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "uglify-js": "^3.19.3" }, "scripts": { - "test": "ava", + "test": "jest", "lint": "eslint --cache .", "preversion": "make bundle" },