-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
32 lines (27 loc) · 1002 Bytes
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const db = require('./db.js');
// const { hashPassword } = require('.//utilities')
// const { CartService, ProfileService } = require('./services');
const authentication = require("./middlewares/authenticationMiddleware");
// const cartService = new CartService();
// const profileService = new ProfileService();
// // async function addtoCart(cartId, productId, count){
// // await db.productToCart.create({
// // data: {
// // cartId,
// // productId,
// // count
// // }
// // })
// // }
// async function superUser(){
// const password = "1234"
// const createdUser = await db.user.create({data: {
// userName: "Sepehr",
// password: await hashPassword(password),
// email: "Sepehr@gmail.com",
// role: "Owner"
// }})
// await cartService.createCart(createdUser.userId);
// await profileService.createProfile(createdUser.userId);
// }
// superUser(); // manually add the superadmin