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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
673c4ccb
Commit
673c4ccb
authored
Nov 29, 2017
by
Fatih Acet
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-iife-autosize' into 'master'
Improve autosize spec See merge request gitlab-org/gitlab-ce!15620
parents
60da38a1
cd9c7596
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
17 deletions
+14
-17
spec/javascripts/behaviors/autosize_spec.js
spec/javascripts/behaviors/autosize_spec.js
+14
-17
No files found.
spec/javascripts/behaviors/autosize_spec.js
View file @
673c4ccb
/* eslint-disable space-before-function-paren, no-var, comma-dangle, no-return-assign, max-len */
import
'
~/behaviors/autosize
'
;
(
function
()
{
describe
(
'
Autosize behavior
'
,
function
()
{
var
load
;
beforeEach
(
function
()
{
return
setFixtures
(
'
<textarea class="js-autosize" style="resize: vertical"></textarea>
'
);
function
load
()
{
$
(
document
).
trigger
(
'
load
'
);
}
describe
(
'
Autosize behavior
'
,
()
=>
{
beforeEach
(()
=>
{
setFixtures
(
'
<textarea class="js-autosize" style="resize: vertical"></textarea>
'
);
});
it
(
'
does not overwrite the resize property
'
,
function
()
{
it
(
'
does not overwrite the resize property
'
,
()
=>
{
load
();
return
expect
(
$
(
'
textarea
'
)).
toHaveCss
({
resize
:
'
vertical
'
});
expect
(
$
(
'
textarea
'
)).
toHaveCss
({
resize
:
'
vertical
'
,
});
return
load
=
function
()
{
return
$
(
document
).
trigger
(
'
load
'
);
};
});
})
.
call
(
window
)
;
});
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