Skip to content

Unskip Inline tests #448

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/Integration/tests/guilable/expected/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>

</head>
<body>
<p>Lorem ipsum dolor sit amet <span class="guilabel">Foo Bar</span>.</p>
<p>Lorem ipsum dolor sit amet<span class="guilabel">Foo Bar</span>.</p>
<p>Lorem ipsum dolor sit amet <span class="guilabel">Foo-Bar</span>.</p>
<p>Lorem ipsum dolor sit amet<span class="guilabel">Foo Bar</span>.</p>
<p>Lorem ipsum dolor sit amet <span class="guilabel">Foo-Bar</span>.</p>
</body>
</html>
Empty file.
14 changes: 10 additions & 4 deletions tests/Integration/tests/inline-code/expected/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<p><code class="code php docutils literal notranslate"><span class="pre">$result</span> <span class="pre">=</span> <span class="pre">$a</span> <span class="pre">+</span> <span class="pre">23;</span></code></p>
<p><code class="code typoscript docutils literal notranslate"><span class="pre">lib.hello.value</span> <span class="pre">=</span> <span class="pre">Hello</span> <span class="pre">World!</span></code></p>
<p><code class="file docutils literal notranslate"><span class="pre">/etc/passwd</span></code></p>
<p><kbd class="kbd docutils literal notranslate">ctrl</kbd> + <kbd class="kbd docutils literal notranslate">s</kbd></p>
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>

</head>
<body>
<p><code class="php">$result = $a + 23;</code><code class="typoscript">lib.hello.value = Hello World!</code><span class="pre file">/etc/passwd</span><kbd>ctrl</kbd> + <kbd>s</kbd></p>
</body>
</html>
Empty file.