mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
15 changed files with 49 additions and 49 deletions
@ -1,6 +1,6 @@
|
||||
import { Test } from '@nestjs/testing'; |
||||
import { AttachmentsController } from './attachments.controller'; |
||||
import { AttachmentsService } from './attachments.service'; |
||||
import { AttachmentsService } from '../services/attachments.service'; |
||||
import type { TestingModule } from '@nestjs/testing'; |
||||
|
||||
describe('AttachmentsController', () => { |
@ -1,6 +1,6 @@
|
||||
import { Test } from '@nestjs/testing'; |
||||
import { FiltersController } from './filters.controller'; |
||||
import { FiltersService } from './filters.service'; |
||||
import { FiltersService } from '../services/filters.service'; |
||||
import type { TestingModule } from '@nestjs/testing'; |
||||
|
||||
describe('FiltersController', () => { |
@ -1,7 +1,7 @@
|
||||
import { Injectable } from '@nestjs/common'; |
||||
import { T } from 'nc-help'; |
||||
import { validatePayload } from '../../helpers'; |
||||
import { Filter } from '../../models'; |
||||
import { validatePayload } from '../helpers'; |
||||
import { Filter } from '../models'; |
||||
import type { FilterReqType } from 'nocodb-sdk'; |
||||
|
||||
@Injectable() |
Loading…
Reference in new issue