summaryrefslogtreecommitdiff
path: root/test/linter/test_scss_stylelint.vader
blob: 5a1e71c6ecd8c3b6e83afd55d2282c2285192e32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Before:
  call ale#assert#SetUpLinterTest('scss', 'stylelint')
  unlet! b:executable

After:
  unlet! b:executable
  call ale#assert#TearDownLinterTest()

Execute(node_modules directories should be discovered):
  call ale#test#SetFilename('../test-files/stylelint/nested/testfile.scss')

  let b:executable = ale#path#Simplify(
  \   g:dir
  \   . '/../test-files/stylelint/node_modules/.bin/stylelint'
  \)

  AssertLinter b:executable, ale#Escape(b:executable) . '  --stdin-filename %s'

Execute(The global override should work):
  let b:ale_scss_stylelint_executable = 'foobar'
  let b:ale_scss_stylelint_use_global = 1

  call ale#test#SetFilename('../test-files/stylelint/nested/testfile.scss')

  AssertLinter 'foobar', ale#Escape('foobar') . '  --stdin-filename %s'

Execute(Extra options should be configurable):
  let b:ale_scss_stylelint_options = '--configFile ''/absolute/path/to/file'''

  AssertLinter 'stylelint',
  \ ale#Escape('stylelint') . '  --configFile ''/absolute/path/to/file'' --stdin-filename %s'