This repository was archived by the owner on Jun 22, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +5
-58
lines changed Expand file tree Collapse file tree 10 files changed +5
-58
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,6 @@ The functions have some common options that they use.
2323
2424The [ facade in this package is a TypeScript interface] ( ../src/Facade.ts ) , but concrete implementations of the interface are listed below.
2525
26- - [ Memory] ( https://github.com/js-entity-repos/memory ) - Coming Soon
26+ - [ Memory] ( https://github.com/js-entity-repos/memory )
2727- [ Mongo] ( https://github.com/js-entity-repos/mongo ) - Coming Soon
2828- [ Knex] ( https://github.com/js-entity-repos/knex ) - Coming Soon
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import removeEntityTest from './removeEntity/test';
1111import upsertEntityTest from './upsertEntity/test' ;
1212import { TestEntity , TestId } from './utils/testEntity' ;
1313
14- export const facadeTest = ( facade : Facade < TestId , TestEntity > ) => {
14+ export default ( facade : Facade < TestId , TestEntity > ) => {
1515 describe ( 'facade' , ( ) => {
1616 beforeEach ( async ( ) => {
1717 await facade . removeEntities ( { filter : { } } ) ;
Original file line number Diff line number Diff line change 11import 'mocha' ; // tslint:disable-line:no-import-side-effect
22import * as assert from 'power-assert' ;
33import { TestEntity , testEntity } from '../../tests/utils/testEntity' ;
4- import createCursorFromEntity from './createCursorFromEntity ' ;
4+ import createCursorFromEntity from './index ' ;
55
66describe ( 'createCursorFromEntity' , ( ) => {
77 it ( 'should return undefined when the entity is undefined' , ( ) => {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import 'mocha'; // tslint:disable-line:no-import-side-effect
22import * as assert from 'power-assert' ;
33import { TestEntity , testEntity } from '../../tests/utils/testEntity' ;
44import Pagination from '../../types/Pagination' ;
5- import createCursorFromEntity from '../createCursorFromEntity/createCursorFromEntity ' ;
6- import createPaginationFilter from './createPaginationFilter ' ;
5+ import createCursorFromEntity from '../createCursorFromEntity' ;
6+ import createPaginationFilter from './index ' ;
77
88describe ( 'createCursorFromEntity' , ( ) => {
99 const sort = { id : true } ;
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments