@jspsych/config 3.2.0 → 3.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jspsych/config
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3486](https://github.com/jspsych/jsPsych/pull/3486) [`ad1d854f43c1e25ba988a3aa2a23a8ab22be3535`](https://github.com/jspsych/jsPsych/commit/ad1d854f43c1e25ba988a3aa2a23a8ab22be3535) Thanks [@jadeddelta](https://github.com/jadeddelta)! - remove DOM clearing after each individual test, fixes issues with testing in other repositories
8
+
3
9
  ## 3.2.0
4
10
 
5
11
  ### Minor Changes
package/jest.cjs CHANGED
@@ -18,7 +18,6 @@ module.exports.makePackageConfig = (dirname) => {
18
18
  displayName: {
19
19
  name: packageBaseName,
20
20
  color: packageBaseName === "jspsych" ? "white" : "cyanBright",
21
- },
22
- setupFilesAfterEnv: ["../config/jest.setup.js"],
21
+ }
23
22
  };
24
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jspsych/config",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Shared (build) configuration for jsPsych packages",
5
5
  "type": "module",
6
6
  "exports": {
package/jest.setup.js DELETED
@@ -1,3 +0,0 @@
1
- global.afterEach(() => {
2
- document.body.innerHTML = '';
3
- });