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++
22
33notifications :
44 email :
55 on_success : never
66 on_failure : change
77
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
923
1024git :
1125 depth : 10
1226
1327branches :
1428 only :
1529 - 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", ->
3535 expect (errorOccurred).toBe true
3636
3737 describe " .getAvailableDictionaries()" , ->
38+ return if process .platform is ' linux'
39+
3840 it " returns an array of string dictionary names" , ->
3941 dictionaries = SpellChecker .getAvailableDictionaries ()
4042 expect (Array .isArray (dictionaries)).toBe true
You can’t perform that action at this time.
0 commit comments