Max Brunsfeld
b59bec5f9d
Add Set::isEqual method in specs
...
This allows us to use the .toEqual matcher to compare Set
objects.
2015-05-29 17:18:48 -07:00
Jessica Lord
319cff8010
merge
2015-05-14 09:48:03 -07:00
Ben Ogle
e7d921bfbc
Add specs for autocomplete deletion
2015-05-13 09:19:03 -07:00
Jessica Lord
c9046a6cfa
Add error message to Jasmine output
2015-05-08 11:16:19 -07:00
Antonio Scandurra
17894fd36b
🎨
2015-04-16 09:15:46 +02:00
Antonio Scandurra
f3a1aebb8a
Merge branch 'master' into as-public-ci
2015-04-16 08:31:21 +02:00
Antonio Scandurra
cf17a1ddc8
Merge branch 'master' into as-public-ci
2015-04-15 09:40:33 +02:00
liuxiong332
e46d3b0d27
Merge remote-tracking branch 'origin' into pane-resize
...
Conflicts:
src/pane-element.coffee
src/pane.coffee
2015-04-15 10:09:41 +08:00
Antonio Scandurra
6190fe00d7
🎨 Avoid string interpolation in require
2015-04-14 19:34:43 +02:00
liuxiong332
769beadcf3
integration test in pane-axis-element-spec into pane-resize-handle-element-spec
2015-04-14 21:10:05 +08:00
Antonio Scandurra
1c8cf4390c
Rename to safe-clipboard
...
...and use remote only on Linux renderer processes.
2015-04-14 10:50:09 +02:00
Antonio Scandurra
16dbb7d0bb
🐧 💚 Mock native clipboard appropriately
2015-04-13 12:12:03 +02:00
Antonio Scandurra
6dfcc582b3
Increase defaultTimeoutInterval for Travis
2015-04-10 21:07:14 +02:00
Machiste Quintana
5d2392ea67
👕 Fix new coffeelint errors
2015-04-06 23:59:54 -04:00
Kevin Sawicki
188b2e5a74
Report core deprecations in specs
2015-04-06 15:55:51 -07:00
Ben Ogle
6b5a74e3b6
Update specs for overlay rendering
2015-04-01 17:40:59 -07:00
Nathan Sobo
1d84d74e50
Centralize text editor DOM interaction through atom.views
...
This ensures that DOM writing, reading, and polling properly interleaves
with DOM interactions from other text editors and any other code that
coordinates via atom.views. Not sure about the location of it though.
2015-02-19 17:14:58 -07:00
Michael Bolin
5805bf9675
Try to set the Project's repo if it does not have one when a new RepositoryProvider is registered.
...
I tested this using my test `HgRepositoryProvider`. Now when I run the following from the
command line:
atom <path-to-directory-with-hg-repository>
And then run the following in the console:
atom.project.getRepositories()
I get an array with an `HgRepository` in it. Previously, I got an empty array because the
`Project`'s paths were set before my `HgRepositoryProvider` was registered.
2015-02-13 22:27:13 -08:00
Max Brunsfeld
3e28eff755
Remove logic for different promise types in waitsForPromise
...
I added that logic when using the selenium-webdriver library, but
then switched to using webdriverio, which has the same Promise
interface as Q.
2015-02-09 14:22:13 -08:00
Max Brunsfeld
c19d99e9e2
Add integration test for starting atom w/ different arguments
2015-02-04 12:59:26 -08:00
Max Brunsfeld
5638c7fb6a
Remove atom.services global
...
Signed-off-by: Nathan Sobo <nathan@github.com >
2015-02-02 10:01:34 -08:00
Max Brunsfeld
d9fb54ad6f
Reset atom.services between specs
2015-02-02 10:00:53 -08:00
Ben Ogle
db41b022c2
Merge pull request #5228 from atom/bo-fix-wait-promise
...
Make waitsForPromise() work with es6 promises as well as Q promises
2015-01-23 10:33:20 -08:00
Max Brunsfeld
d4cc549a01
Add jasmine.useRealClock
...
This is the only way to unmock the _.now function uses
by _.debounce and _.throttle, since package specs don't
necessarily have access to core's copy of underscore-plus
Signed-off-by: Nathan Sobo <nathan@github.com >
2015-01-22 17:59:18 -08:00
Ben Ogle
76a5da8be8
Make waitsForPromise() work with es6 promises as well as Q promises.
2015-01-22 17:26:15 -08:00
Nathan Sobo
49cd3eb5da
Clear window.setTimeout mock before each spec
...
This fixes a failure in the keymap spec where we assert that setTimeout
hasn’t been called.
2015-01-13 10:17:48 -07:00
Nathan Sobo
462af79d21
Fix deprecation suppression in specs
2015-01-07 10:12:04 -07:00
Max Brunsfeld
339f331776
Debounce saving and loading of config
2014-12-30 10:14:57 -08:00
Max Brunsfeld
32275b27a3
Always spy on _.now
2014-12-30 00:04:17 -08:00
Nathan Sobo
93bf9357b0
Remove waitsForAnimationFrame spec helper
...
It doesn’t work reliably on CI.
2014-12-02 11:14:02 -07:00
Nathan Sobo
de619a731b
Merge pull request #4315 from atom/remove-deprecations
...
Remove deprecations from core
2014-11-27 12:16:35 -07:00
Nathan Sobo
0b44cee8db
Separate IPC messages that don’t belong in the command palette
...
Path opening and update signaling were both using the command-sending
IPC mechanism, but neither is actually a command. This commit adds a
second “message” channel with custom handling on the render process
side for these messages, rather than attempting to route them through
commands.
2014-11-27 10:30:50 -07:00
Nathan Sobo
b341749d54
Add TextEditorElement::setUpdatedSynchronously
...
To allow testing of async editor rendering in packages. This is helpful
for overlay decorations which behave differently when rendering is
async.
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2014-11-26 18:13:12 -07:00
Ben Ogle
eb0e3df720
Suppress deprecations in workspaceView
2014-11-26 14:55:39 -08:00
Ben Ogle
1f6764e708
No longer require atom in the spec-helper
2014-11-26 14:55:38 -08:00
Nathan Sobo
c92f805e6e
Remove deprecated requires from spec-helper
2014-11-25 08:18:26 -07:00
Nathan Sobo
97a56574e0
Merge pull request #4259 from atom/ns-deprecate-syntax-global
...
Rename atom.syntax to atom.grammars
2014-11-20 14:11:45 -07:00
Nathan Sobo
d53d01d95b
Replace atom.syntax with atom.grammars
2014-11-20 11:42:49 -07:00
Ben Ogle
747398f2a5
Remove workspaceView from spec-helper
2014-11-19 17:46:32 -08:00
Ben Ogle
6bdbabecbd
Add jasmine.attachToDOM
2014-11-19 17:08:54 -08:00
Nathan Sobo
e1d6d55311
Enable editor.useShadowDOM in all specs
2014-11-04 16:37:28 -07:00
Nathan Sobo
7badd9ba25
Don’t rely on :focus selector for toHaveFocus matcher
...
:focus doesn’t work properly when focus is inside the shadow DOM of
an element, but document.activeElement does.
2014-11-04 16:37:23 -07:00
Nathan Sobo
fa733c85ad
Fix setEditorHeightInLines shim now that we’ve dropped .react class
2014-11-04 16:37:23 -07:00
Kevin Sawicki
c2ef68a435
Go back to using a concurrency of 2
2014-10-20 14:21:20 -07:00
Kevin Sawicki
aa117774b3
Experiment with longer timeout on Mac CI
2014-10-20 13:52:39 -07:00
Ben Ogle
b425df1d58
Merge pull request #3837 from atom/bo-panel-api
...
Add panel API
2014-10-20 13:25:48 -07:00
Ben Ogle
2ac1862e5f
Remove toHide matcher.
2014-10-20 12:12:21 -07:00
Ben Ogle
3f170a8b5e
Add matcher toHide()
2014-10-16 17:31:30 -07:00
Nathan Sobo
65e077abd1
Use StyleManager and StylesElement to manage all stylesheet elements
...
For now, loading remains in the theme manager, but all application of
stylesheets is routed through atom.styles.
2014-10-15 15:14:13 -06:00
Nathan Sobo
79598aaae9
Add StyleElement
...
This will be used to handle stylesheet rendering when we move management
of loading stylesheets to the StyleManager instead of the theme manager.
This sets us up for being able to render specific stylesheets in shadow
roots in addition to just having global stylesheets.
2014-10-15 15:14:13 -06:00