@saasquatch/program-test-suite 2.4.1 → 2.4.2

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +2 -1
  3. package/CHANGELOG.md +0 -56
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 ReferralSaaSquatch.com, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasquatch/program-test-suite",
3
- "version": "2.4.1",
3
+ "version": "2.4.2",
4
4
  "description": "A collection of utilities for creating program unit tests",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -13,6 +13,7 @@
13
13
  ],
14
14
  "main": "dist/index.js",
15
15
  "license": "MIT",
16
+ "author": "ReferralSaaSquatch.com, Inc.",
16
17
  "dependencies": {
17
18
  "@saasquatch/program-boilerplate": "^3.6.0",
18
19
  "deepmerge": "^4.2.2",
package/CHANGELOG.md DELETED
@@ -1,56 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ## [2.4.1] - 2022-09-23
11
-
12
- ### Changed
13
-
14
- - Updated CHANGELOG
15
-
16
- ## [2.4.0] - 2022-09-23
17
-
18
- ### Added
19
-
20
- - Added a test step to set the program rules to arbitrary JSON
21
-
22
- ## [2.3.0] - 2022-09-21
23
-
24
- ### Added
25
-
26
- - Added test support for edge condition triggers
27
-
28
- ### Changed
29
-
30
- - Removed peer dependencies
31
-
32
- ## [2.1.2] - (2022-08-25)
33
-
34
- ### Added
35
-
36
- - Added messages for all `assert` function calls to improve the debugging experience
37
- for failing tests
38
- - Added README and CHANGELOG
39
-
40
- ### Changed
41
-
42
- - Allow the `SCHEDULED` and `REWARD_SCHEDULED` triggers to be used with the program
43
- trigger step definition
44
-
45
- ### Fixed
46
-
47
- - Fixed the `rules` and `template` variables of `World` being mutated across resets
48
- - Fixed the time machine step incorrectly passing the time as a string to the program
49
- instead of as a number
50
- - Fixed the segment-add step incorrectly including quotes in the added segments (`A"`
51
- instead of `A`)
52
-
53
- [2.4.1]: https://github.com/saasquatch/picklesdoc/releases/tag/v2.4.1
54
- [2.4.0]: https://github.com/saasquatch/picklesdoc/releases/tag/v2.4.0
55
- [2.3.0]: https://github.com/saasquatch/picklesdoc/releases/tag/v2.3.0
56
- [2.1.2]: https://github.com/saasquatch/picklesdoc/releases/tag/v2.1.2