Create dataset.jsonl
Browse files- dataset.jsonl +3 -0
dataset.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{"input": "Write a Cypress test for logging in.", "output": "cy.get('#username').type('admin');\ncy.get('#password').type('password');\ncy.get('#submit').click();"}
|
2 |
+
{"input": "Write a Cypress test for clicking a button.", "output": "cy.get('.button').click();"}
|
3 |
+
{"input": "Write a Cypress test for form validation.", "output": "cy.get('form').within(() => {\n cy.get('input[name=\"email\"]').type('[email protected]');\n cy.get('input[name=\"password\"]').type('securepassword');\n cy.root().submit();\n});"}
|