@quenty/instanceutils 13.16.2-canary.544.d46888c.0 → 13.16.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.
package/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [13.16.2-canary.544.d46888c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.16.1...@quenty/instanceutils@13.16.2-canary.544.d46888c.0) (2025-03-28)
6
+ ## [13.16.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.16.1...@quenty/instanceutils@13.16.2) (2025-03-31)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/instanceutils
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/instanceutils",
3
- "version": "13.16.2-canary.544.d46888c.0",
3
+ "version": "13.16.2",
4
4
  "description": "Utility functions involving instances in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,14 +26,14 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/brio": "14.16.2-canary.544.d46888c.0",
30
- "@quenty/loader": "10.8.0",
31
- "@quenty/maid": "3.4.0",
32
- "@quenty/rx": "13.16.2-canary.544.d46888c.0",
33
- "@quenty/symbol": "3.4.0"
29
+ "@quenty/brio": "^14.16.2",
30
+ "@quenty/loader": "^10.8.0",
31
+ "@quenty/maid": "^3.4.0",
32
+ "@quenty/rx": "^13.16.2",
33
+ "@quenty/symbol": "^3.4.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "d46888c8ff66a7c7df276948146279c58cc05a18"
38
+ "gitHead": "af926ec08f523833f37d22477c72dca034219823"
39
39
  }
@@ -4,23 +4,20 @@
4
4
 
5
5
  local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
- local Jest = require("Jest")
8
7
  local RxInstanceUtils = require("RxInstanceUtils")
9
8
 
10
- local describe = Jest.Globals.describe
11
- local expect = Jest.Globals.expect
12
- local it = Jest.Globals.it
9
+ return function()
10
+ describe("RxInstanceUtils.observeChildrenBrio", function()
11
+ local part = Instance.new("Part")
12
+ local observe = RxInstanceUtils.observeChildrenBrio(part)
13
+ local externalResult = nil
13
14
 
14
- describe("RxInstanceUtils.observeChildrenBrio", function()
15
- local part = Instance.new("Part")
16
- local observe = RxInstanceUtils.observeChildrenBrio(part)
17
- local externalResult = nil
15
+ it("should not emit anything", function()
16
+ observe:Subscribe(function(result)
17
+ externalResult = result
18
+ end)
18
19
 
19
- it("should not emit anything", function()
20
- observe:Subscribe(function(result)
21
- externalResult = result
20
+ expect(externalResult).to.equal(nil)
22
21
  end)
23
-
24
- expect(externalResult).toEqual(nil)
25
22
  end)
26
- end)
23
+ end