• This project
    • Loading...
  • Sign in

fe / static-ci · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • static-ci
  • test
  • db.test.js
  • Init commit
    4552c510
    by 姜枫
    2016-05-27 14:45:27 +0800  
    Browse Files
db.test.js 234 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13

'use strict';

import {building} from '../apps/models';

import test from 'ava';

test('test db select', async (t) => {
    let doc = await building.findOne( { _id: 'zuugJFiH97LgPcv6' } );
    console.log(doc);
    
    t.pass();
});