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
2955e956
Commit
2955e956
authored
Jun 20, 2017
by
Winnie Hellmann
Committed by
Phil Hughes
Jun 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up Vue warnings in tests
parent
50d4050d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
2 deletions
+33
-2
spec/javascripts/deploy_keys/components/key_spec.js
spec/javascripts/deploy_keys/components/key_spec.js
+1
-0
spec/javascripts/deploy_keys/components/keys_panel_spec.js
spec/javascripts/deploy_keys/components/keys_panel_spec.js
+1
-0
spec/javascripts/filtered_search/filtered_search_dropdown_manager_spec.js
.../filtered_search/filtered_search_dropdown_manager_spec.js
+4
-0
spec/javascripts/filtered_search/filtered_search_manager_spec.js
...vascripts/filtered_search/filtered_search_manager_spec.js
+2
-0
spec/javascripts/issue_show/components/app_spec.js
spec/javascripts/issue_show/components/app_spec.js
+0
-1
spec/javascripts/test_bundle.js
spec/javascripts/test_bundle.js
+25
-1
No files found.
spec/javascripts/deploy_keys/components/key_spec.js
View file @
2955e956
...
...
@@ -14,6 +14,7 @@ describe('Deploy keys key', () => {
propsData
:
{
deployKey
,
store
,
endpoint
:
'
https://test.host/dummy/endpoint
'
,
},
}).
$mount
();
};
...
...
spec/javascripts/deploy_keys/components/keys_panel_spec.js
View file @
2955e956
...
...
@@ -17,6 +17,7 @@ describe('Deploy keys panel', () => {
keys
:
data
.
enabled_keys
,
showHelpBox
:
true
,
store
,
endpoint
:
'
https://test.host/dummy/endpoint
'
,
},
}).
$mount
();
...
...
spec/javascripts/filtered_search/filtered_search_dropdown_manager_spec.js
View file @
2955e956
...
...
@@ -4,6 +4,10 @@ import '~/filtered_search/filtered_search_tokenizer';
import
'
~/filtered_search/filtered_search_dropdown_manager
'
;
describe
(
'
Filtered Search Dropdown Manager
'
,
()
=>
{
beforeEach
(()
=>
{
spyOn
(
jQuery
,
'
ajax
'
);
});
describe
(
'
addWordToInput
'
,
()
=>
{
function
getInputValue
()
{
return
document
.
querySelector
(
'
.filtered-search
'
).
value
;
...
...
spec/javascripts/filtered_search/filtered_search_manager_spec.js
View file @
2955e956
import
*
as
recentSearchesStoreSrc
from
'
~/filtered_search/stores/recent_searches_store
'
;
import
RecentSearchesService
from
'
~/filtered_search/services/recent_searches_service
'
;
import
RecentSearchesServiceError
from
'
~/filtered_search/services/recent_searches_service_error
'
;
import
RecentSearchesRoot
from
'
~/filtered_search/recent_searches_root
'
;
import
'
~/lib/utils/url_utility
'
;
import
'
~/lib/utils/common_utils
'
;
import
'
~/filtered_search/filtered_search_token_keys
'
;
...
...
@@ -71,6 +72,7 @@ describe('Filtered Search Manager', () => {
beforeEach
(()
=>
{
spyOn
(
RecentSearchesService
,
'
isAvailable
'
).
and
.
returnValue
(
isLocalStorageAvailable
);
spyOn
(
recentSearchesStoreSrc
,
'
default
'
);
spyOn
(
RecentSearchesRoot
.
prototype
,
'
render
'
);
filteredSearchManager
=
new
gl
.
FilteredSearchManager
();
filteredSearchManager
.
setup
();
...
...
spec/javascripts/issue_show/components/app_spec.js
View file @
2955e956
...
...
@@ -51,7 +51,6 @@ describe('Issuable output', () => {
});
afterEach
(()
=>
{
Vue
.
http
.
interceptors
=
_
.
without
(
Vue
.
http
.
interceptors
,
issueShowInterceptor
);
});
it
(
'
should render a title/description/edited and update title/description/edited on update
'
,
(
done
)
=>
{
...
...
spec/javascripts/test_bundle.js
View file @
2955e956
/* eslint-disable jasmine/no-global-setup */
import
$
from
'
jquery
'
;
import
_
from
'
underscore
'
;
import
'
jasmine-jquery
'
;
import
'
~/commons
'
;
import
Vue
from
'
vue
'
;
import
VueResource
from
'
vue-resource
'
;
Vue
.
use
(
VueResource
);
// enable test fixtures
jasmine
.
getFixtures
().
fixturesPath
=
'
/base/spec/javascripts/fixtures
'
;
jasmine
.
getJSONFixtures
().
fixturesPath
=
'
/base/spec/javascripts/fixtures
'
;
...
...
@@ -22,7 +28,25 @@ window.gon = window.gon || {};
// enough for the socket to continue to communicate.
// The downside is that it creates a minor performance penalty in the time it takes
// to run our unit tests.
beforeEach
(
done
=>
done
());
// eslint-disable-line jasmine/no-global-setup
beforeEach
(
done
=>
done
());
beforeAll
(()
=>
{
const
origError
=
console
.
error
;
spyOn
(
console
,
'
error
'
).
and
.
callFake
((
message
)
=>
{
if
(
/^
\[
Vue warn
\]
/
.
test
(
message
))
{
fail
(
message
);
}
else
{
origError
(
message
);
}
});
});
const
builtinVueHttpInterceptors
=
Vue
.
http
.
interceptors
.
slice
();
beforeEach
(()
=>
{
// restore interceptors so we have no remaining ones from previous tests
Vue
.
http
.
interceptors
=
builtinVueHttpInterceptors
.
slice
();
});
// render all of our tests
const
testsContext
=
require
.
context
(
'
.
'
,
true
,
/_spec$/
);
...
...
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