Skip to content

Commit a763067

Browse files
authored
Merge pull request #119 from ngneat/feat/add-animation
feat: 🎸 expose animation input
2 parents 64e766b + 5338f66 commit a763067

File tree

10 files changed

+551
-530
lines changed

10 files changed

+551
-530
lines changed

.github/workflows/helipopper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build playground app in production mode
4646
run: npm run build:playground
4747

48-
- uses: cypress-io/github-action@v2
48+
- uses: cypress-io/github-action@v5
4949
with:
5050
browser: chrome
5151
headless: true

angular.json

+3
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,8 @@
140140
}
141141
}
142142
}
143+
},
144+
"cli": {
145+
"analytics": false
143146
}
144147
}

cypress.config.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { defineConfig } from 'cypress';
2+
3+
export default defineConfig({
4+
video: false,
5+
responseTimeout: 60000,
6+
pageLoadTimeout: 120000,
7+
e2e: {
8+
// We've imported your old cypress plugins here.
9+
// You may want to clean this up later by importing these.
10+
setupNodeEvents(on, config) {
11+
return require('./cypress/plugins/index.ts')(on, config);
12+
},
13+
baseUrl: 'http://localhost:4200',
14+
excludeSpecPattern: ['**/plugins/**.js', '**/tsconfig.json'],
15+
specPattern: './cypress/e2e/**/*.cy.ts'
16+
}
17+
});

cypress.json

-7
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)