You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Node.js module that provides a registry and gateway for execution of pre-defined
7
7
*[Overview](#overview)
8
8
*[Concepts](#concepts)
9
9
*[Usage](#usage)
10
+
*[Testing](#testing)
10
11
*[History](#history)
11
12
*[Related tools](#related)
12
13
@@ -54,9 +55,20 @@ Three sets of init commands are availiable as of version `1.1.0`:
54
55
55
56
7) There is also a unit-test (```test\all.js```) for the command registry in ```o365Utils.js``` which gives an example of usage for all thre possible Exchange connect variations.
56
57
58
+
### <aid="testing"></a>Testing
59
+
Project test can be executed by running `npm test` command on Windows machine. Connection to Exchange Online is required for the tests to pass.
60
+
61
+
There is also option to run Docker based tests. You need to configure `environment` variables in `docker-compose.yml` file in order to define connection parameters. To run tests in Docker container, execute `docker-compose run test` command once the configuration is done.
62
+
63
+
Exchange online tests will be skipped if the connection is not available.
64
+
65
+
57
66
### <aid="history"></a>History
58
67
59
68
```
69
+
v1.1.4 - 2024-11-22
70
+
- Extended testing and fixed escaping reserved variables and special characters in commands
71
+
60
72
v1.1.3 - 2024-11-14
61
73
- Added support for [multivalued parameters](https://learn.microsoft.com/en-us/exchange/modifying-multivalued-properties-exchange-2013-help) in commands
Copy file name to clipboardExpand all lines: package.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,14 @@
1
1
{
2
2
"name": "powershell-command-executor",
3
-
"version": "1.1.3",
3
+
"version": "1.1.4",
4
4
"description": "Provides a registry and gateway for execution powershell commands through long-lived established remote PSSessions via a stateful-process-command-proxy pool of powershell processes",
0 commit comments