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
585aa201
Project 'zarina/exam_11_back' was moved to 'z/exam_11_back'. Please update any links and bookmarks that may still have the old path.
Commit
585aa201
authored
Jul 22, 2020
by
Алексей Анпилогов
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#3
, добавила товары в фикстуры
parent
767f569d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
fixtures.js
fixtures.js
+21
-0
No files found.
fixtures.js
View file @
585aa201
...
@@ -31,6 +31,27 @@ db.once('open', async () => {
...
@@ -31,6 +31,27 @@ db.once('open', async () => {
token
:
''
token
:
''
});
});
const
[
category1
,
category2
]
=
await
Category
.
create
({
title
:
"some category"
,
},{
title
:
"some category 2"
});
await
Product
.
create
({
author
:
user2
.
_id
,
category
:
category1
.
_id
,
title
:
'some product'
,
description
:
'some description for some product'
,
image
:
'somePhoto.jpeg'
,
price
:
222
},{
author
:
user1
.
_id
,
category
:
category2
.
_id
,
title
:
'some product 2'
,
description
:
'some description for some product 2'
,
image
:
'somePhoto1.jpeg'
,
price
:
154
});
db
.
close
();
db
.
close
();
});
});
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