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
d67f86b6
Commit
d67f86b6
authored
Apr 08, 2019
by
Winnie Hellmann
Committed by
Mike Greiling
Apr 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable ESLint rule jest/no-focused-tests
(cherry picked from commit 872ec6b7ac02a2a0d571336f0451cc1482cbd934)
parent
e88198f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
spec/frontend/.eslintrc.yml
spec/frontend/.eslintrc.yml
+2
-0
spec/frontend/serverless/components/functions_spec.js
spec/frontend/serverless/components/functions_spec.js
+9
-5
No files found.
spec/frontend/.eslintrc.yml
View file @
d67f86b6
...
@@ -12,3 +12,5 @@ globals:
...
@@ -12,3 +12,5 @@ globals:
loadFixtures
:
false
loadFixtures
:
false
preloadFixtures
:
false
preloadFixtures
:
false
setFixtures
:
false
setFixtures
:
false
rules
:
jest/no-focused-tests
:
error
spec/frontend/serverless/components/functions_spec.js
View file @
d67f86b6
...
@@ -4,14 +4,21 @@ import axios from '~/lib/utils/axios_utils';
...
@@ -4,14 +4,21 @@ import axios from '~/lib/utils/axios_utils';
import
functionsComponent
from
'
~/serverless/components/functions.vue
'
;
import
functionsComponent
from
'
~/serverless/components/functions.vue
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
createStore
}
from
'
~/serverless/store
'
;
import
{
createStore
}
from
'
~/serverless/store
'
;
import
{
TEST_HOST
}
from
'
helpers/test_constants
'
;
import
{
mockServerlessFunctions
}
from
'
../mock_data
'
;
import
{
mockServerlessFunctions
}
from
'
../mock_data
'
;
describe
(
'
functionsComponent
'
,
()
=>
{
describe
(
'
functionsComponent
'
,
()
=>
{
const
statusPath
=
`
${
TEST_HOST
}
/statusPath`
;
let
component
;
let
component
;
let
store
;
let
store
;
let
localVue
;
let
localVue
;
let
axiosMock
;
beforeEach
(()
=>
{
beforeEach
(()
=>
{
axiosMock
=
new
AxiosMockAdapter
(
axios
);
axiosMock
.
onGet
(
statusPath
).
reply
(
200
);
localVue
=
createLocalVue
();
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
localVue
.
use
(
Vuex
);
...
@@ -20,6 +27,7 @@ describe('functionsComponent', () => {
...
@@ -20,6 +27,7 @@ describe('functionsComponent', () => {
afterEach
(()
=>
{
afterEach
(()
=>
{
component
.
vm
.
$destroy
();
component
.
vm
.
$destroy
();
axiosMock
.
restore
();
});
});
it
(
'
should render empty state when Knative is not installed
'
,
()
=>
{
it
(
'
should render empty state when Knative is not installed
'
,
()
=>
{
...
@@ -80,11 +88,7 @@ describe('functionsComponent', () => {
...
@@ -80,11 +88,7 @@ describe('functionsComponent', () => {
);
);
});
});
fit
(
'
should render the functions list
'
,
()
=>
{
it
(
'
should render the functions list
'
,
()
=>
{
const
statusPath
=
'
statusPath
'
;
const
axiosMock
=
new
AxiosMockAdapter
(
axios
);
axiosMock
.
onGet
(
statusPath
).
reply
(
200
);
component
=
shallowMount
(
functionsComponent
,
{
component
=
shallowMount
(
functionsComponent
,
{
localVue
,
localVue
,
store
,
store
,
...
...
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