We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99dd334 commit 9bc70a0Copy full SHA for 9bc70a0
2 files changed
package.json
@@ -7,7 +7,7 @@
7
"build": "tsc",
8
"format": "npx prettier --write '*.?s' 'test/*.?s'",
9
"lint": "eslint '*.?s' 'test/*.?s'",
10
- "test": "jest --detectOpenHandles --forceExit",
+ "test": "jest --detectOpenHandles",
11
"semantic-release": "semantic-release",
12
"prepare": "npm run build"
13
},
test/smoke.test.ts
@@ -24,6 +24,10 @@ beforeAll(async () => {
24
await User.sync({ force: true });
25
});
26
27
+afterAll(async () => {
28
+ sequelize.close();
29
+});
30
+
31
test('should save an encrypted field', async () => {
32
const user: any = User.build();
33
user.private_1 = 'test';
0 commit comments