Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-26Merge branch 'close-open-ajax-issue' into 'master' Robert Speicher
open and close issue via ajax request. With tests Close and Reopen issues with ajax request. See merge request !2164
2015-12-24Fix NewBranchForm specDouwe Maan
2015-12-24removes unused `alert` from issue spec. Requires flash in the ↵Jacob Schatz
*implementation* instead of the spec.
2015-12-24adds test for issue close/reopen failureJacob Schatz
2015-12-24fixes tests to work with jasmine/jqueryJacob Schatz
2015-12-22Add helper methods to JS validation spec for invalid branch namesDouglas Barbosa Alexandre
2015-12-22Fix minor stylistic complaintsDouglas Barbosa Alexandre
2015-12-22adds alerts for when http request errors out in some way.Jacob Schatz
2015-12-22clarifies tests with methods like `toBeVisible()` etc.Jacob Schatz
2015-12-22updates tests style for four-phase-testing as per: ↵Jacob Schatz
https://robots.thoughtbot.com/four-phase-test
2015-12-21open and close issue via ajax request. With testsJacob Schatz
2015-12-18Add specs for JS validation for invalid characters in branch nameDouglas Barbosa Alexandre
2015-12-16Rename .issuable-details to .detail-page (and -header and -description)Douwe Maan
2015-12-08Make tab target selectors less naiveRobert Speicher
Prior, any of the specified IDs could have been hijacked by a table of contents header, breaking the tab functionality. For example, a `## Notes` header would get the id `notes` and prevent the Discussion tab from being activated. Closes #3908
2015-10-13Apply new design to files pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-08Check originalEvent.repeat *and* event.repeatRobert Speicher
phantomjs < 2.0 doesn't support creating `KeyboardEvent` so the tests were failing on CI
2015-10-07Check originalEvent.repeatRobert Speicher
2015-10-07Add "Quick Submit" JS behaviorRobert Speicher
2015-10-07Require jquery.turbolinks in all JS specsRobert Speicher
Side-effect: This simplifies the requiresInput handler
2015-09-10Add specs for syntax_highlight JSRobert Speicher
Also makes it work when given a parent element containing a `.js-syntax-highlight` element so for dynamically-added things like notes or Markdown previews, we can more accurately target just the element we care about.
2015-09-05Remove style attribute from textarea during ZenMode activationRobert Speicher
Closes internal https://dev.gitlab.org/gitlab/gitlabhq/issues/2466
2015-07-23Fix the "Reload with full diff" URL buttonStan Hu
On the first load, the merge request tabs would be requested in JSON format to render the HTML. This would cause the "Reload with full diff" button to create a link to diff.json. Closes #2041
2015-07-18Add test case for clicking line number anchor iconRobert Speicher
2015-06-27Remove disableButtonIf[Any]EmptyField calls from formsRobert Speicher
These have been replaced by the "requiresInput" behavior.
2015-06-27Add "Requires Input" JS behaviorRobert Speicher
2015-06-26Update tests and use js-issuable class for context formDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-22Merge branch 'rs-dev-issue-2355' into 'master'Dmitriy Zaporozhets
MergeRequest#show performance improvements This is a first pass on improving the performance of the `MergeRequests#show` page. Notable changes: - The "Commits" tab is loaded lazily, so the initial page load should be much faster for MRs with many commits. - Relative timestamps via `timeago` are only initialized once per load instead of `O(n^2)`. This greatly improves frontend rendering times for a large number of commits. - Refactored `User.find_for_commit` to use a single ARel-generated SQL query instead of the old method which resulted in one query, and could result in up to three. See merge request !838
2015-06-22Add MergeRequestTabs specsRobert Speicher
2015-06-19Refactor LineHighlighterRobert Speicher
2015-06-19Rename BlobView to LineHighlighterRobert Speicher
2015-06-19Refactor and spec BlobView JSRobert Speicher
2015-06-03Add JS specs for Array extensionsRobert Speicher
2015-06-03Move jQuery enable/disable extensions to extensions/jqueryRobert Speicher
Removes redundant enableButton/disableButton extensions, and adds specs for the jQuery extensions.
2015-06-03Add ZenMode javascript specsRobert Speicher
2015-05-29Stub ajax in JS specsRobert Speicher
2015-05-29Remove jasmine-fixture, use teaspoon fixturesRobert Speicher
2015-05-29teaspoon installRobert Speicher
2015-05-29Remove jasmine-rails; add teaspoonRobert Speicher
2015-05-25Update specs.Douwe Maan
2015-05-06Remove unneeded jasmine setupRobert Speicher
2015-05-06Task List feature and JS specsRobert Speicher
2015-04-18Typo: Issueable -> IssuableRobert Speicher
2015-04-18Add JS specs for replyWithSelectedTextRobert Speicher
2015-04-18Simplify jasmine.yml since we're using jasmine-rails gemRobert Speicher
A lot of these values are handled by the asset pipeline.
2015-04-18Make StatGraph JS explicitly require its dependenciesRobert Speicher
This allows us to test them in a bit more isolation.
2015-04-18rails g jasmine_rails:installRobert Speicher
2015-04-18Re-run rails g jasmine:installRobert Speicher
2014-06-21Add trailing newline to all text files.Ciro Santilli
Present in the large majority of files of each respective type.
2013-12-10Update jasmine gem to work with rails4Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-09-30Make rake gitlab:test worksDmitriy Zaporozhets