smc-hub
Version:
CoCalc: Backend webserver component
41 lines (28 loc) • 1.07 kB
JavaScript
// Generated by CoffeeScript 2.5.1
(function() {
//########################################################################
// This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
// License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
//########################################################################
/*
TESTING of user queries specifically involving projects
COPYRIGHT : (c) 2017 SageMath, Inc.
LICENSE : AGPLv3
*/
var async, create_accounts, create_projects, db, expect, misc, pgtest, setup, teardown;
pgtest = require('./pgtest');
db = void 0;
setup = function(cb) {
return pgtest.setup(function(err) {
db = pgtest.db;
return cb(err);
});
};
teardown = pgtest.teardown;
({create_accounts, create_projects} = pgtest);
async = require('async');
expect = require('expect');
misc = require('smc-util/misc');
describe('extensive tests of editing properties of a project', function() {});
}).call(this);
//# sourceMappingURL=postgres-user-queries-projects.js.map