Skip to content

Commit 7c470ed

Browse files
committed
Update infrastructure
1 parent 2d0b922 commit 7c470ed

File tree

11 files changed

+3
-177
lines changed

11 files changed

+3
-177
lines changed

.github/workflows/test-matrix.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,3 @@ jobs:
7777
ES_VERSION=${{ matrix.elasticsearch-version }} \
7878
ELASTICSEARCH_URL=http://localhost:9200 \
7979
npm run mocha
80-
81-
- name: Upload coverage
82-
if: matrix.node-version == '20' && matrix.elasticsearch-version == '8.15.0'
83-
uses: codecov/codecov-action@v3
84-
with:
85-
file: ./coverage/lcov.info

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 Webnicer Ltd
3+
Copyright (c) 2025 Feathers Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

test-utils/schema-5.0.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

test-utils/schema-6.0.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

test-utils/schema-8.0.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const adapterTests = require('@feathersjs/adapter-tests')
44
const feathers = require('@feathersjs/feathers')
55
const errors = require('@feathersjs/errors')
66
const service = require('../lib')
7-
const db = require('../test-utils/test-db')
7+
const db = require('./test-db')
88
const coreTests = require('./core')
99
const { getCompatProp } = require('../lib/utils/core')
1010

File renamed without changes.

test-utils/test-db.js renamed to test/test-db.js

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,13 @@ const { getCompatVersion, getCompatProp } = require('../lib/utils/core')
33

44
let apiVersion = null
55
let client = null
6-
const schemaVersions = ['5.0', '6.0', '7.0', '8.0']
6+
const schemaVersions = ['8.0']
77

88
const compatVersion = getCompatVersion(schemaVersions, getApiVersion())
99
const compatSchema = require(`./schema-${compatVersion}`)
1010

1111
function getServiceConfig(serviceName) {
1212
const configs = {
13-
'5.0': {
14-
index: 'test',
15-
type: serviceName
16-
},
17-
'6.0': {
18-
index: serviceName === 'aka' ? 'test-people' : `test-${serviceName}`,
19-
type: 'doc'
20-
},
21-
'7.0': {
22-
index: serviceName === 'aka' ? 'test-people' : `test-${serviceName}`,
23-
type: '_doc'
24-
},
2513
'8.0': {
2614
index: serviceName === 'aka' ? 'test-people' : `test-${serviceName}`
2715
},

types/index.test.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

types/tsconfig.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)