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
377047f6
Commit
377047f6
authored
Dec 11, 2020
by
NataliaTepluhina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed tests that are failing on FOSS
parent
548ba5c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
spec/frontend/boards/components/board_form_spec.js
spec/frontend/boards/components/board_form_spec.js
+0
-14
No files found.
spec/frontend/boards/components/board_form_spec.js
View file @
377047f6
...
...
@@ -4,7 +4,6 @@ import AxiosMockAdapter from 'axios-mock-adapter';
import
{
TEST_HOST
}
from
'
jest/helpers/test_constants
'
;
import
{
GlModal
}
from
'
@gitlab/ui
'
;
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
import
BoardScope
from
'
ee_component/boards/components/board_scope.vue
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
visitUrl
}
from
'
~/lib/utils/url_utility
'
;
...
...
@@ -64,7 +63,6 @@ describe('BoardForm', () => {
const
findFormWrapper
=
()
=>
wrapper
.
find
(
'
[data-testid="board-form-wrapper"]
'
);
const
findDeleteConfirmation
=
()
=>
wrapper
.
find
(
'
[data-testid="delete-confirmation-message"]
'
);
const
findConfigurationOptions
=
()
=>
wrapper
.
find
(
BoardConfigurationOptions
);
const
findBoardScope
=
()
=>
wrapper
.
find
(
BoardScope
);
const
findInput
=
()
=>
wrapper
.
find
(
'
#board-new-name
'
);
const
createComponent
=
(
props
,
data
)
=>
{
...
...
@@ -172,12 +170,6 @@ describe('BoardForm', () => {
});
});
it
(
'
passes a correct collapseScope property to BoardScope component on scoped board
'
,
async
()
=>
{
createComponent
({
canAdminBoard
:
true
,
scopedIssueBoardFeatureEnabled
:
true
});
await
waitForPromises
();
expect
(
findBoardScope
().
props
(
'
collapseScope
'
)).
toBe
(
true
);
});
describe
(
'
when submitting a create event
'
,
()
=>
{
beforeEach
(()
=>
{
const
url
=
`
${
endpoints
.
boardsEndpoint
}
.json`
;
...
...
@@ -255,12 +247,6 @@ describe('BoardForm', () => {
});
});
it
(
'
passes a correct collapseScope property to BoardScope component on scoped board
'
,
async
()
=>
{
createComponent
({
canAdminBoard
:
true
,
scopedIssueBoardFeatureEnabled
:
true
});
await
waitForPromises
();
expect
(
findBoardScope
().
props
(
'
collapseScope
'
)).
toBe
(
false
);
});
describe
(
'
when submitting an update event
'
,
()
=>
{
beforeEach
(()
=>
{
const
url
=
endpoints
.
boardsEndpoint
;
...
...
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