-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
7488c03
commit 3f45d54
Showing
34 changed files
with
3,359 additions
and
3,308 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,18 @@ | ||
module.exports = { | ||
root: true, | ||
ignorePatterns: ["dist/*", "cypress/*", "build/*"], | ||
extends: ["eslint:recommended", "plugin:svelte/recommended", "prettier"], | ||
rules: { | ||
"no-unused-vars": ["error", { argsIgnorePattern: "^_" }], | ||
}, | ||
parserOptions: { | ||
sourceType: "module", | ||
ecmaVersion: 2020, | ||
extraFileExtensions: [".svelte"], | ||
}, | ||
env: { | ||
browser: true, | ||
es2017: true, | ||
node: true, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"baseUrl": "http://localhost:3000", | ||
"video": false | ||
} | ||
"baseUrl": "http://localhost:3000", | ||
"video": false | ||
} |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
describe('Sapper template app', () => { | ||
beforeEach(() => { | ||
cy.visit('/') | ||
}); | ||
describe("Sapper template app", () => { | ||
beforeEach(() => { | ||
cy.visit("/"); | ||
}); | ||
|
||
it('has the correct <h1>', () => { | ||
cy.contains('h1', 'Now playing') | ||
}); | ||
it("has the correct <h1>", () => { | ||
cy.contains("h1", "Now playing"); | ||
}); | ||
|
||
it('navigates to /search', () => { | ||
cy.get('nav a').contains('Search').click(); | ||
cy.url().should('include', '/search'); | ||
}); | ||
it("navigates to /search", () => { | ||
cy.get("nav a").contains("Search").click(); | ||
cy.url().should("include", "/search"); | ||
}); | ||
|
||
it('navigates to /browse', () => { | ||
cy.get('nav a').contains('Browse').click(); | ||
cy.url().should('include', '/browse'); | ||
}); | ||
it("navigates to /browse", () => { | ||
cy.get("nav a").contains("Browse").click(); | ||
cy.url().should("include", "/browse"); | ||
}); | ||
}); |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: '3.4' | ||
version: "3.4" | ||
services: | ||
snapclient: | ||
image: ivdata/snapclient | ||
|
Oops, something went wrong.