chore(lint): migrate Jest lint rules from eslint to oxlint (#37787)

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
Đỗ Trọng Hải
2026-02-08 16:44:42 +07:00
committed by GitHub
parent c4d2d42b3b
commit 563d9f1a3f
264 changed files with 1893 additions and 1952 deletions

View File

@@ -27,14 +27,14 @@ import {
describe('layerUtil', () => {
describe('createWmsLayer', () => {
it('exists', () => {
test('exists', () => {
// function is trivial
expect(createWmsLayer).toBeDefined();
});
});
describe('createWfsLayer', () => {
it('properly applies style', async () => {
test('properly applies style', async () => {
const colorToExpect = '#123456';
const wfsLayerConf: WfsLayerConf = {
@@ -82,14 +82,14 @@ describe('layerUtil', () => {
});
describe('createXyzLayer', () => {
it('exists', () => {
test('exists', () => {
// function is trivial
expect(createXyzLayer).toBeDefined();
});
});
describe('createLayer', () => {
it('exists', () => {
test('exists', () => {
expect(createLayer).toBeDefined();
});
});