no-import-alias-snapshot.yml 841 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. id: no-import-alias
  2. snapshots:
  3. import { baz, foo as bar } from "./foo":
  4. labels:
  5. - source: foo as bar
  6. style: primary
  7. start: 14
  8. end: 24
  9. - source: bar
  10. style: secondary
  11. start: 21
  12. end: 24
  13. import { foo as bar } from "./foo":
  14. labels:
  15. - source: foo as bar
  16. style: primary
  17. start: 9
  18. end: 19
  19. - source: bar
  20. style: secondary
  21. start: 16
  22. end: 19
  23. import { foo as bar, baz } from "./foo":
  24. labels:
  25. - source: foo as bar
  26. style: primary
  27. start: 9
  28. end: 19
  29. - source: bar
  30. style: secondary
  31. start: 16
  32. end: 19
  33. import { type Foo as Bar, baz } from "./foo":
  34. labels:
  35. - source: type Foo as Bar
  36. style: primary
  37. start: 9
  38. end: 24
  39. - source: Bar
  40. style: secondary
  41. start: 21
  42. end: 24