Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a88a8a08
Commit
a88a8a08
authored
Mar 13, 2019
by
Natalia Tepluhina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed pdf tests
parent
c89742b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
spec/javascripts/pdf/index_spec.js
spec/javascripts/pdf/index_spec.js
+2
-2
spec/javascripts/pdf/page_spec.js
spec/javascripts/pdf/page_spec.js
+1
-1
No files found.
spec/javascripts/pdf/index_spec.js
View file @
a88a8a08
import
Vue
from
'
vue
'
;
import
{
PDFJS
}
from
'
vendor/pdf
'
;
import
{
GlobalWorkerOptions
}
from
'
vendor/pdf
'
;
import
workerSrc
from
'
vendor/pdf.worker.min
'
;
import
PDFLab
from
'
~/pdf/index.vue
'
;
import
pdf
from
'
../fixtures/blob/pdf/test.pdf
'
;
PDFJS
.
workerSrc
=
workerSrc
;
GlobalWorkerOptions
.
workerSrc
=
workerSrc
;
const
Component
=
Vue
.
extend
(
PDFLab
);
describe
(
'
PDF component
'
,
()
=>
{
...
...
spec/javascripts/pdf/page_spec.js
View file @
a88a8a08
...
...
@@ -12,7 +12,7 @@ describe('Page component', () => {
let
testPage
;
beforeEach
(
done
=>
{
pdfjsLib
.
PDFJS
.
workerSrc
=
workerSrc
;
pdfjsLib
.
GlobalWorkerOptions
.
workerSrc
=
workerSrc
;
pdfjsLib
.
getDocument
(
testPDF
)
.
then
(
pdf
=>
pdf
.
getPage
(
1
))
...
...
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