mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-02-05 10:09:32 -06:00
Adding cypress testing
This commit is contained in:
4
cypress.json
Normal file
4
cypress.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"projectId": "3c7d5r",
|
||||
"baseUrl": "http://localhost:8484"
|
||||
}
|
||||
5
cypress/integration/form.spec.js
Normal file
5
cypress/integration/form.spec.js
Normal file
@@ -0,0 +1,5 @@
|
||||
describe("Index test", () => {
|
||||
it("Can it make it to the index page", () => {
|
||||
cy.visit("/");
|
||||
});
|
||||
});
|
||||
23
package.json
Normal file
23
package.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "gaps",
|
||||
"version": "0.2.2-alpha",
|
||||
"description": "Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. If those movies don't exist in your library, Gaps will recommend getting those movies, legally of course.",
|
||||
"main": "/",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"cypress": "^3.8.3"
|
||||
},
|
||||
"scripts": {
|
||||
"e2e": "cypress open"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/JasonHHouse/Gaps.git"
|
||||
},
|
||||
"author": "Jason House",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/JasonHHouse/Gaps/issues"
|
||||
},
|
||||
"homepage": "https://github.com/JasonHHouse/Gaps#readme"
|
||||
}
|
||||
Reference in New Issue
Block a user