Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
46e7b979
Unverified
Commit
46e7b979
authored
8 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Add a test for @salsakran
parent
19956586
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/unit/lib/dom.spec.js
+29
-0
29 additions, 0 deletions
frontend/test/unit/lib/dom.spec.js
with
29 additions
and
0 deletions
frontend/test/unit/lib/dom.spec.js
0 → 100644
+
29
−
0
View file @
46e7b979
import
{
getSelectionPosition
,
setSelectionPosition
}
from
"
metabase/lib/dom
"
describe
(
"
getSelectionPosition/setSelectionPosition
"
,
()
=>
{
let
container
;
beforeEach
(()
=>
{
container
=
document
.
createElement
(
"
div
"
);
document
.
body
.
appendChild
(
container
);
})
afterEach
(()
=>
{
document
.
body
.
removeChild
(
container
);
})
it
(
"
should get/set selection on input correctly
"
,
()
=>
{
let
input
=
document
.
createElement
(
"
input
"
);
container
.
appendChild
(
input
);
input
.
value
=
"
hello world
"
;
setSelectionPosition
(
input
,
[
3
,
6
]);
const
position
=
getSelectionPosition
(
input
);
expect
(
position
).
toEqual
([
3
,
6
]);
});
it
(
"
should get/set selection on contenteditable correctly
"
,
()
=>
{
let
contenteditable
=
document
.
createElement
(
"
div
"
);
container
.
appendChild
(
contenteditable
);
contenteditable
.
textContent
=
"
<div>hello world</div>
"
setSelectionPosition
(
contenteditable
,
[
3
,
6
]);
const
position
=
getSelectionPosition
(
contenteditable
);
expect
(
position
).
toEqual
([
3
,
6
]);
});
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment