-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop ignoring .ts files in prettier and fix existing issues.
- Loading branch information
Showing
1,800 changed files
with
22,335 additions
and
16,741 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/dist | ||
/node_modules | ||
**/.git | ||
*.ts | ||
src/environments/.env.ts |
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,24 +1,24 @@ | ||
import { defineConfig } from "cypress"; | ||
import { defineConfig } from 'cypress'; | ||
|
||
export default defineConfig({ | ||
videosFolder: "cypress/videos", | ||
screenshotsFolder: "cypress/screenshots", | ||
fixturesFolder: "cypress/fixtures", | ||
videosFolder: 'cypress/videos', | ||
screenshotsFolder: 'cypress/screenshots', | ||
fixturesFolder: 'cypress/fixtures', | ||
|
||
e2e: { | ||
// We've imported your old cypress plugins here. | ||
// You may want to clean this up later by importing these. | ||
setupNodeEvents(on, config) { | ||
return require("./cypress/plugins/index.ts")(on, config); | ||
return require('./cypress/plugins/index.ts')(on, config); | ||
}, | ||
baseUrl: "http://localhost:4200", | ||
baseUrl: 'http://localhost:4200' | ||
}, | ||
|
||
component: { | ||
devServer: { | ||
framework: "angular", | ||
bundler: "webpack", | ||
framework: 'angular', | ||
bundler: 'webpack' | ||
}, | ||
specPattern: "**/*.cy.ts", | ||
}, | ||
specPattern: '**/*.cy.ts' | ||
} | ||
}); |
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 |
---|---|---|
|
@@ -20,5 +20,4 @@ describe('app', () => { | |
it('should login into the app', () => { | ||
page.validLogin(); | ||
}); | ||
|
||
}); |
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
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
Oops, something went wrong.