Skip to content

Commit

Permalink
chore(tests): move all tests to __tests__ subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanshatford committed Mar 26, 2024
1 parent f310f2b commit 72befaa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';

import { getServer } from './getServer';
import { getServer } from '../getServer';

describe('getServer', () => {
it('should produce correct result', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';

import { getServiceName } from './getServiceName';
import { getServiceName } from '../getServiceName';

describe('getServiceName', () => {
it('should produce correct result', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';

import { getServices } from './getServices';
import { getServices } from '../getServices';

describe('getServices', () => {
it('should create a unnamed service if tags are empty', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { describe, expect, it } from 'vitest';

import { reservedWords } from '../../../utils/reservedWords';
import { getType } from '../../../utils/type';
import { getModel } from './getModel';
import { reservedWords } from '../../../../utils/reservedWords';
import { getType } from '../../../../utils/type';
import { getModel } from '../getModel';

const openApi = {
openapi: '3.0',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';

import { getServer } from './getServer';
import { getServer } from '../getServer';

describe('getServer', () => {
it('should produce correct result', () => {
Expand Down

0 comments on commit 72befaa

Please sign in to comment.