mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-07 12:03:30 +02:00
Rename tests folder to test to follow standards
This commit is contained in:
21
test/database.js
Normal file
21
test/database.js
Normal file
@@ -0,0 +1,21 @@
|
||||
'use strict';
|
||||
/*global require*/
|
||||
|
||||
var assert = require('assert'),
|
||||
db = require('./mocks/databasemock');
|
||||
|
||||
|
||||
describe('Test database', function() {
|
||||
it('should work', function(){
|
||||
assert.doesNotThrow(function(){
|
||||
var db = require('./mocks/databasemock');
|
||||
});
|
||||
});
|
||||
|
||||
require('./database/keys');
|
||||
require('./database/list');
|
||||
require('./database/sets');
|
||||
require('./database/hash');
|
||||
require('./database/sorted');
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user