summaryrefslogtreecommitdiff
path: root/test/fixers/test_stylelint_fixer_callback.vader
blob: ee7cfdd4e9cd92877576f88756c054a4b97c889f (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
32
33
34
Before:
  Save g:ale_stylelint_options

  let g:ale_stylelint_options = ''

  call ale#assert#SetUpFixerTest('css', 'stylelint')

After:
  call ale#assert#TearDownFixerTest()

Execute(The stylelint callback should return the correct default values):
  call ale#test#SetFilename('../test-files/eslint/react-app/subdir/testfile.css')

  AssertFixer
  \ {
  \   'read_temporary_file': 0,
  \   'cwd': '%s:h',
  \   'command': (has('win32') ? 'node.exe ' : '')
  \     . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/eslint/react-app/node_modules/stylelint/bin/stylelint.js'))
  \     . ' --fix --stdin --stdin-filename %s',
  \ }

Execute(The stylelint callback should include custom stylelint options):
  let g:ale_stylelint_options = '--cache'
  call ale#test#SetFilename('../test-files/eslint/react-app/subdir/testfile.css')

  AssertFixer
  \ {
  \   'read_temporary_file': 0,
  \   'cwd': '%s:h',
  \   'command': (has('win32') ? 'node.exe ' : '')
  \     . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/eslint/react-app/node_modules/stylelint/bin/stylelint.js'))
  \     . ' --cache --fix --stdin --stdin-filename %s',
  \ }