This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1
- language : objective-c
1
+ language : c++
2
2
3
3
notifications :
4
4
email :
5
5
on_success : never
6
6
on_failure : change
7
7
8
- script : ' curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
8
+ os :
9
+ - linux
10
+ - osx
11
+
12
+ install :
13
+ - rm -rf ~/.nvm
14
+ - git clone https://github.com/creationix/nvm.git ~/.nvm
15
+ - source ~/.nvm/nvm.sh
16
+ - nvm install $NODE_VERSION
17
+ - node --version
18
+ - npm install
19
+
20
+ script : npm test
21
+
22
+ sudo : false
9
23
10
24
git :
11
25
depth : 10
12
26
13
27
branches :
14
28
only :
15
29
- master
30
+
31
+ env :
32
+ global :
33
+ - CC=clang CXX=clang++ npm_config_clang=1
34
+ matrix :
35
+ - NODE_VERSION=node
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ describe "SpellChecker", ->
35
35
expect (errorOccurred).toBe true
36
36
37
37
describe " .getAvailableDictionaries()" , ->
38
+ return if process .platform is ' linux'
39
+
38
40
it " returns an array of string dictionary names" , ->
39
41
dictionaries = SpellChecker .getAvailableDictionaries ()
40
42
expect (Array .isArray (dictionaries)).toBe true
You can’t perform that action at this time.
0 commit comments