Skip to content

Commit

Permalink
fix(AF): BREAKING CHANGE: Drop support for IE 11
Browse files Browse the repository at this point in the history
* Bump AF to version 5.0.0
  • Loading branch information
mfilip committed Aug 22, 2024
1 parent 89af0ed commit c2441f7
Show file tree
Hide file tree
Showing 18 changed files with 17,888 additions and 15,056 deletions.
40 changes: 0 additions & 40 deletions .config/config.ts

This file was deleted.

34 changes: 0 additions & 34 deletions .config/esm.ts

This file was deleted.

18 changes: 0 additions & 18 deletions .config/ie11.ts

This file was deleted.

19 changes: 0 additions & 19 deletions .config/latest.ts

This file was deleted.

19 changes: 0 additions & 19 deletions .config/legacy.ts

This file was deleted.

36 changes: 0 additions & 36 deletions .config/local.esm.ts

This file was deleted.

26 changes: 0 additions & 26 deletions .config/local.umd.ts

This file was deleted.

21 changes: 0 additions & 21 deletions .config/umd.ts

This file was deleted.

7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v1
Expand All @@ -31,9 +31,6 @@ jobs:
run: npm run build

- name: Test
run: npm test

- name: Cypress
run: npm run test:cypress
run: npm run test
env:
CYPRESS_API_KEY: ${{ secrets.API_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v1
Expand Down
9 changes: 9 additions & 0 deletions cypress.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const { defineConfig } = require("cypress");

module.exports = defineConfig({
e2e: {
supportFile: "cypress/support/index.ts",
specPattern: "cypress/integration/*.ts",
defaultCommandTimeout: 10000
},
});
4 changes: 0 additions & 4 deletions cypress.json

This file was deleted.

8 changes: 3 additions & 5 deletions cypress/integration/test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
["ie11", "esm", "umd"].forEach(file => {
["esm", "umd"].forEach(file => {
describe(file.toLocaleUpperCase(), () => {
before(() => {
cy.setup(`./example/${file}.html`);
cy.wait(1000);
});

beforeEach(() => {
cy.setup(`./example/${file}.html`);
cy.wait(1000);
cy.get("#line_1").clear({ force: true });
cy.get("#line_2").clear({ force: true });
cy.get("#post_town").clear({ force: true });
Expand Down
Loading

0 comments on commit c2441f7

Please sign in to comment.