Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
E
exam_11_back
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zarina
exam_11_back
Commits
767f569d
Commit
767f569d
authored
Jul 22, 2020
by
Алексей Анпилогов
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#3
, добавила пользователей в фикстуры
parent
91cb450d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
1 deletion
+37
-1
fixtures.js
fixtures.js
+36
-0
Product.js
models/Product.js
+1
-1
No files found.
fixtures.js
View file @
767f569d
const
mongoose
=
require
(
'mongoose'
);
const
config
=
require
(
'./config'
);
const
Category
=
require
(
'./models/Category'
);
const
Product
=
require
(
'./models/Product'
);
const
User
=
require
(
'./models/User'
);
mongoose
.
connect
(
config
.
db
.
url
+
'/'
+
config
.
db
.
name
);
const
db
=
mongoose
.
connection
;
db
.
once
(
'open'
,
async
()
=>
{
try
{
await
db
.
dropCollection
(
'users'
);
await
db
.
dropCollection
(
'categories'
);
await
db
.
dropCollection
(
'products'
);
}
catch
(
e
)
{
console
.
log
(
'Collections were not present, skipping drop...'
);
}
const
[
user1
,
user2
]
=
await
User
.
create
({
username
:
'user'
,
password
:
'user'
,
displayName
:
'Some User'
,
phone
:
'+949205234052'
,
token
:
''
},
{
username
:
'user2'
,
password
:
'user2'
,
displayName
:
'Some User 2'
,
phone
:
'+324013248105'
,
token
:
''
});
db
.
close
();
});
models/Product.js
View file @
767f569d
...
...
@@ -31,6 +31,6 @@ const ProductSchema = new Schema({
}
});
const
Product
=
mongoose
.
model
(
"Product"
,
Product
C
hema
);
const
Product
=
mongoose
.
model
(
"Product"
,
Product
Sc
hema
);
module
.
exports
=
Product
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment