Skip to content

Commit

Permalink
Update normalizeRawSettings.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed May 23, 2024
1 parent 3cdcaf5 commit c585870
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import path from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';

import { describe, expect, test } from 'vitest';

import { normalizeSettingsGlobs } from './normalizeRawSettings.js';

const pathToSettings = path.resolve('/path/to/settings.json');
const pathToSettings = '/path/to/settings.json';
const defaultSettingsUrl = pathToFileURL(pathToSettings);
const defaultSettingsPath = fileURLToPath(pathToSettings);
const defaultSettingsPath = fileURLToPath(defaultSettingsUrl);

describe('normalize settings', () => {
test.each`
Expand Down

0 comments on commit c585870

Please sign in to comment.