Why does Tekton turn this:
- |
npm install playwright
mkdir tests
echo "import { test, expect } from '@playwright/test'" >> tests/chat.spec.js;
echo "" >> tests/chat.spec.js;
echo "test('Chat only for logged in users', async ({ page }) => {" >> tests/chat.spec.js;
into this?
- >
npm install playwright
mkdir tests
echo "import { test, expect } from '@playwright/test'" >>
tests/chat.spec.js;
echo "" >> tests/chat.spec.js;
echo "test('Chat only for logged in users', async ({ page })
=> {" >> tests/chat.spec.js;
And how to stop it from wrapping my command lines?