From 6e0bc8be7875f5a3cdde135f925ccf0b36c0a8c7 Mon Sep 17 00:00:00 2001 From: Chapman Pendery Date: Sun, 10 Mar 2024 23:23:35 -0700 Subject: [PATCH 1/3] build: bump 0.0.1-rc.5 Signed-off-by: Chapman Pendery --- README.md | 7 ------- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2caed28..6dc8899 100644 --- a/README.md +++ b/README.md @@ -26,17 +26,10 @@ pnpm add -D @microsoft/tui-test Running tests is as simple as running TUI Test from the command line after installation: -```sh -tui-test -``` - -Or run it using `npx`: - ```sh npx @microsoft/tui-test ``` - ## Capabilities ### Resilient • No flaky tests diff --git a/package-lock.json b/package-lock.json index d63bbe7..61b8ab1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@microsoft/tui-test", - "version": "0.0.1-rc.4", + "version": "0.0.1-rc.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@microsoft/tui-test", - "version": "0.0.1-rc.4", + "version": "0.0.1-rc.5", "license": "MIT", "dependencies": { "@homebridge/node-pty-prebuilt-multiarch": "^0.11.12", diff --git a/package.json b/package.json index ea6a4a6..d581cd6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write", "test:e2e": "npm run build && node index.js e2e.test.ts" }, - "version": "0.0.1-rc.4", + "version": "0.0.1-rc.5", "description": "Fast and precise end-to-end terminal testing framework", "type": "module", "engines": { From 0fdb4779b1d52a9b8bf8ce208e69cea7341c6dd1 Mon Sep 17 00:00:00 2001 From: Chapman Pendery Date: Sun, 10 Mar 2024 23:25:18 -0700 Subject: [PATCH 2/3] docs: update requirements Signed-off-by: Chapman Pendery --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6dc8899..5b7c08b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ TUI Test is a framework for testing terminal applications. It provides a rich API for writing tests that interact with a terminal application across macOS, Linux, and Windows with a wide range of shells. It is built to be **fast**, **reliable**, and **easy to use**. +## Requirements + +- Node.js 20.X, 18.X, 16.X (16.6.0 >=) + ## Installation Install TUI Test as using `npm`: From e8f7483f590873d480009282b6cf6c18db5c9104 Mon Sep 17 00:00:00 2001 From: Chapman Pendery Date: Sun, 10 Mar 2024 23:27:52 -0700 Subject: [PATCH 3/3] fix: title in package.json Signed-off-by: Chapman Pendery --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d581cd6..8fdfc8b 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "test:e2e": "npm run build && node index.js e2e.test.ts" }, "version": "0.0.1-rc.5", - "description": "Fast and precise end-to-end terminal testing framework", + "description": "An end-to-end terminal testing framework for CLI and TUI experiences", "type": "module", "engines": { "node": ">=16.6.0 <21.0.0"