forked from mickeynp/combobulate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// -*- combobulate-test-point-overlays: ((1 outline 192) (2 outline 228)); eval: (combobulate-test-fixture-mode t); -*- | ||
import React from 'react'; | ||
|
||
|
||
const Something = () => { | ||
return ( | ||
<div> | ||
<h1>Something</h1> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<!-- -*- combobulate-test-point-overlays: ((1 outline 136) (2 outline 172)); eval: (combobulate-test-fixture-mode t); -*- --> | ||
<div> | ||
<span class="foo"> | ||
Text here | ||
</span> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// -*- combobulate-test-point-overlays: ((1 outline 176) (2 outline 192)); eval: (combobulate-test-fixture-mode t); -*- | ||
const HelloWorld = () => { | ||
return ( | ||
<div> | ||
<h1>Hello World</h1> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
;; This file is generated auto generated. Do not edit directly. | ||
|
||
(require 'combobulate) | ||
|
||
(require 'combobulate-test-prelude) | ||
|
||
(ert-deftest combobulate-test-html-combobulate-navigate-sequence-next--element-2 () | ||
"Test `combobulate' with `fixtures/sequence/element.html' in `html-ts-mode' mode." | ||
(combobulate-test | ||
(:language html :mode html-ts-mode :fixture "fixtures/sequence/element.html") | ||
:tags | ||
'(combobulate html html-ts-mode combobulate-navigate-sequence-next) | ||
(should-error | ||
(progn | ||
(combobulate-navigate-sequence-next))))) | ||
|
||
|
||
(ert-deftest combobulate-test-tsx-combobulate-navigate-sequence-next--jsx-2 () | ||
"Test `combobulate' with `fixtures/sequence/jsx.tsx' in `tsx-ts-mode' mode." | ||
(combobulate-test | ||
(:language tsx :mode tsx-ts-mode :fixture "fixtures/sequence/jsx.tsx") | ||
:tags | ||
'(combobulate tsx tsx-ts-mode combobulate-navigate-sequence-next) | ||
(should-error | ||
(progn | ||
(combobulate-navigate-sequence-next))))) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
;; This file is generated auto generated. Do not edit directly. | ||
|
||
(require 'combobulate) | ||
|
||
(require 'combobulate-test-prelude) | ||
|
||
(ert-deftest combobulate-test-html-combobulate-navigate-sequence-previous--element-1 () | ||
"Test `combobulate' with `fixtures/sequence/element.html' in `html-ts-mode' mode." | ||
(combobulate-test | ||
(:language html :mode html-ts-mode :fixture "fixtures/sequence/element.html") | ||
:tags | ||
'(combobulate html html-ts-mode combobulate-navigate-sequence-previous) | ||
(combobulate-test-go-to-marker 1) | ||
(combobulate-navigate-sequence-previous) | ||
(combobulate-test-assert-at-marker 1))) | ||
|
||
|
||
(ert-deftest combobulate-test-tsx-combobulate-navigate-sequence-previous--jsx-1 () | ||
"Test `combobulate' with `fixtures/sequence/jsx.tsx' in `tsx-ts-mode' mode." | ||
(combobulate-test | ||
(:language tsx :mode tsx-ts-mode :fixture "fixtures/sequence/jsx.tsx") | ||
:tags | ||
'(combobulate tsx tsx-ts-mode combobulate-navigate-sequence-previous) | ||
(combobulate-test-go-to-marker 1) | ||
(combobulate-navigate-sequence-previous) | ||
(combobulate-test-assert-at-marker 1))) | ||
|
||
|