Skip to content

Commit

Permalink
chore: remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
seia-soto committed Jan 27, 2025
1 parent c5255de commit c0ee852
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions test/unit/converters/helpers.spec.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { describe, it, expect } from 'bun:test';

import {
generateResourcesMapping,
normalizeFilter,
normalizeRule,
} from '../../../src/converters/helpers.js';
import { normalizeFilter, normalizeRule } from '../../../src/converters/helpers.js';

describe('normalizeFilter', () => {
it('format params', () => {
Expand Down Expand Up @@ -162,13 +158,3 @@ describe('normalizeRule', () => {
});
});
});

describe('generateResourcesMapping', () => {
it('filters resources without file extension', () => {
const mapping = generateResourcesMapping();

for (const destination of mapping.values()) {
expect(destination.match(/\w+\.\w+|empty/)).not.toBe(null);
}
});
});

0 comments on commit c0ee852

Please sign in to comment.