@friggframework/core 2.0.0--canary.395.91a7c18.0 → 2.0.0--canary.395.af305ea.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/core",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0--canary.395.
|
|
4
|
+
"version": "2.0.0--canary.395.af305ea.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hapi/boom": "^10.0.1",
|
|
7
7
|
"aws-sdk": "^2.1200.0",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"uuid": "^9.0.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@friggframework/eslint-config": "2.0.0--canary.395.
|
|
26
|
-
"@friggframework/prettier-config": "2.0.0--canary.395.
|
|
27
|
-
"@friggframework/test": "2.0.0--canary.395.
|
|
25
|
+
"@friggframework/eslint-config": "2.0.0--canary.395.af305ea.0",
|
|
26
|
+
"@friggframework/prettier-config": "2.0.0--canary.395.af305ea.0",
|
|
27
|
+
"@friggframework/test": "2.0.0--canary.395.af305ea.0",
|
|
28
28
|
"@types/lodash": "4.17.15",
|
|
29
29
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
30
30
|
"chai": "^4.3.6",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
},
|
|
54
54
|
"homepage": "https://github.com/friggframework/frigg#readme",
|
|
55
55
|
"description": "",
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "af305ea35d2c0fd1114160b2053d91bb53cbeb90"
|
|
57
57
|
}
|
|
@@ -7,7 +7,7 @@ describe('CreateTokenForUserId Use Case', () => {
|
|
|
7
7
|
it('should create and return a token via the repository', async () => {
|
|
8
8
|
const userConfig = {}; // Not used by this use case, but required by the test repo
|
|
9
9
|
const userRepository = new TestUserRepository({ userConfig });
|
|
10
|
-
const createTokenForUserId = new CreateTokenForUserId({ userRepository
|
|
10
|
+
const createTokenForUserId = new CreateTokenForUserId({ userRepository });
|
|
11
11
|
|
|
12
12
|
const userId = 'user-123';
|
|
13
13
|
const token = await createTokenForUserId.execute(userId);
|