@testiny/cli 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +4 -4
- package/{licenses.txt → LICENSES.txt} +1 -1
- package/README.md +2 -2
- package/package.json +21 -21
- package/testiny-importer.js +125 -125
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright Mategra GmbH - All rights reserved
|
|
2
|
-
|
|
3
|
-
Intended only for use with Testiny SaaS platform
|
|
4
|
-
https://www.testiny.io/terms-of-use/
|
|
1
|
+
Copyright Mategra GmbH - All rights reserved
|
|
2
|
+
|
|
3
|
+
Intended only for use with Testiny SaaS platform
|
|
4
|
+
https://www.testiny.io/terms-of-use/
|
|
@@ -129,7 +129,7 @@ SOFTWARE.
|
|
|
129
129
|
|
|
130
130
|
================================================================================
|
|
131
131
|
Package: axios
|
|
132
|
-
Version: 1.3.
|
|
132
|
+
Version: 1.3.5
|
|
133
133
|
Repository: (https://github.com/axios/axios)
|
|
134
134
|
|
|
135
135
|
# Copyright (c) 2014-present Matt Zabriskie & Collaborators
|
package/README.md
CHANGED
|
@@ -9,12 +9,12 @@ Use the Testiny CLI to import test cases and test runs into your Testiny Organiz
|
|
|
9
9
|
|
|
10
10
|
- Create an API key with write permissions on the project you want to import to
|
|
11
11
|
- Set the API key as the TESTINY_API_KEY environment variable or pass with ``--apikey``
|
|
12
|
-
- Running just ``testiny-
|
|
12
|
+
- Running just ``testiny-importer testcase`` or ``testiny-importer testrun`` command prompts for required options
|
|
13
13
|
|
|
14
14
|
## General Options
|
|
15
15
|
|
|
16
16
|
```plain
|
|
17
|
-
|
|
17
|
+
Usage: testiny-importer [options] [command]
|
|
18
18
|
|
|
19
19
|
Options:
|
|
20
20
|
--app <url> App endpoint to use (default: "https://app.testiny.io/")
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@testiny/cli",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "A command-line client for Testiny",
|
|
5
|
-
"main": "./testiny-importer.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"testiny-importer": "./testiny-importer.js"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://www.testiny.io/",
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=16.0.0"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"testiny",
|
|
15
|
-
"testmanagement",
|
|
16
|
-
"testautomation"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mategra GmbH",
|
|
19
|
-
"devDependencies": {},
|
|
20
|
-
"dependencies": {}
|
|
21
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@testiny/cli",
|
|
3
|
+
"version": "1.2.5",
|
|
4
|
+
"description": "A command-line client for Testiny",
|
|
5
|
+
"main": "./testiny-importer.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"testiny-importer": "./testiny-importer.js"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://www.testiny.io/",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=16.0.0"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"testiny",
|
|
15
|
+
"testmanagement",
|
|
16
|
+
"testautomation"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mategra GmbH",
|
|
19
|
+
"devDependencies": {},
|
|
20
|
+
"dependencies": {}
|
|
21
|
+
}
|