@quenty/settings-inputkeymap 10.47.0 → 10.47.1-canary.664.b8766ab.0
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,6 +3,17 @@
|
|
|
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
|
+
## [10.47.1-canary.664.b8766ab.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.47.0...@quenty/settings-inputkeymap@10.47.1-canary.664.b8766ab.0) (2026-02-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **cli:** add aggregated batch test execution ([58f20e4](https://github.com/Quenty/NevermoreEngine/commit/58f20e437540c597ea445f47d47076c08ea9ca21))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [10.47.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.46.1...@quenty/settings-inputkeymap@10.47.0) (2026-02-19)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/settings-inputkeymap
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/settings-inputkeymap",
|
|
3
|
-
"version": "10.47.0",
|
|
3
|
+
"version": "10.47.1-canary.664.b8766ab.0",
|
|
4
4
|
"description": "Input key map setting saving for players",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@quenty/baseobject": "10.10.0",
|
|
34
|
+
"@quenty/baseobject": "10.10.1-canary.664.b8766ab.0",
|
|
35
35
|
"@quenty/enumutils": "3.4.5",
|
|
36
|
-
"@quenty/inputkeymaputils": "14.37.0",
|
|
37
|
-
"@quenty/inputmode": "13.28.0",
|
|
38
|
-
"@quenty/jsonutils": "10.14.0",
|
|
36
|
+
"@quenty/inputkeymaputils": "14.37.1-canary.664.b8766ab.0",
|
|
37
|
+
"@quenty/inputmode": "13.28.1-canary.664.b8766ab.0",
|
|
38
|
+
"@quenty/jsonutils": "10.14.1-canary.664.b8766ab.0",
|
|
39
39
|
"@quenty/loader": "10.10.0",
|
|
40
|
-
"@quenty/maid": "3.6.0",
|
|
40
|
+
"@quenty/maid": "3.6.1-canary.664.b8766ab.0",
|
|
41
41
|
"@quenty/nevermore-test-runner": "1.1.0",
|
|
42
|
-
"@quenty/servicebag": "11.14.0",
|
|
43
|
-
"@quenty/settings": "11.44.0",
|
|
42
|
+
"@quenty/servicebag": "11.14.1-canary.664.b8766ab.0",
|
|
43
|
+
"@quenty/settings": "11.44.1-canary.664.b8766ab.0",
|
|
44
44
|
"@quenty/string": "3.3.6",
|
|
45
45
|
"@quenty/table": "3.9.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "b8766abd82ed090d4313641252c28ca8240744bb"
|
|
48
48
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
--!nonstrict
|
|
2
|
+
--[[
|
|
3
|
+
@class InputKeyMapSettingConstants.spec.lua
|
|
4
|
+
]]
|
|
5
|
+
|
|
6
|
+
local require = require(script.Parent.loader).load(script)
|
|
7
|
+
|
|
8
|
+
local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
|
|
9
|
+
local Jest = require("Jest")
|
|
10
|
+
|
|
11
|
+
local describe = Jest.Globals.describe
|
|
12
|
+
local expect = Jest.Globals.expect
|
|
13
|
+
local it = Jest.Globals.it
|
|
14
|
+
|
|
15
|
+
describe("InputKeyMapSettingConstants", function()
|
|
16
|
+
it("should have DEFAULT_VALUE set to default", function()
|
|
17
|
+
expect(InputKeyMapSettingConstants.DEFAULT_VALUE).toEqual("default")
|
|
18
|
+
end)
|
|
19
|
+
end)
|
|
@@ -9,9 +9,11 @@ local require = require(loader).bootstrapGame(ServerScriptService["settings-inpu
|
|
|
9
9
|
|
|
10
10
|
local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
|
|
11
11
|
|
|
12
|
+
if NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService["settings-inputkeymap"]) then
|
|
13
|
+
return
|
|
14
|
+
end
|
|
15
|
+
|
|
12
16
|
local serviceBag = require("ServiceBag").new()
|
|
13
17
|
serviceBag:GetService(require("SettingsInputKeyMapService"))
|
|
14
18
|
serviceBag:Init()
|
|
15
19
|
serviceBag:Start()
|
|
16
|
-
|
|
17
|
-
NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService["settings-inputkeymap"])
|