Home

tailwind-ctp-intellisense @31e28e862f79114ba3890f40033d78d29cdfdec5 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-server / tests / code-actions / code-actions.v2.test.js
- raw
 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
35
36
37
38
39
40
41
42
43
import { test, expect } from 'vitest'
import { withFixture } from '../common'
import * as fs from 'node:fs/promises'

withFixture('v2', (c) => {
  function testFixture(fixture) {
    test(
      fixture,
      async () => {
        fixture = await fs.readFile(`tests/code-actions/${fixture}.json`, 'utf8')

        let { code, expected, language = 'html' } = JSON.parse(fixture)

        let promise = new Promise((resolve) => {
          c.onNotification('textDocument/publishDiagnostics', ({ diagnostics }) => {
            resolve(diagnostics)
          })
        })

        let textDocument = await c.openDocument({ text: code, lang: language })
        let diagnostics = await promise

        let res = await c.sendRequest('textDocument/codeAction', {
          textDocument,
          context: {
            diagnostics,
          },
        })
        // console.log(JSON.stringify(res))

        expected = JSON.parse(JSON.stringify(expected).replaceAll('{{URI}}', textDocument.uri))

        expect(res).toEqual(expected)
      },
      10000
    )
  }

  // testFixture('conflict')
  testFixture('invalid-theme')
  testFixture('invalid-screen')
  testFixture('invalid-variant')
})