mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-06 17:57:42 +02:00
:Apply templates (#3799)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -1,45 +0,0 @@
|
||||
//
|
||||
// Copyright © 2020 Anticrm Platform Contributors.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
import { connect } from '../connection'
|
||||
import core, { createClient, TxOperations } from '@hcengineering/core'
|
||||
|
||||
describe('client', () => {
|
||||
it('should create connection', async () => {
|
||||
const conn = await connect(() => {})
|
||||
const txes = await conn.findAll(core.class.Tx, {})
|
||||
expect(txes.length).toBe(64)
|
||||
})
|
||||
|
||||
it('should create client', async () => {
|
||||
const client = await createClient(connect)
|
||||
const txes = await client.findAll(core.class.Class, {})
|
||||
expect(txes.length).toBe(33)
|
||||
})
|
||||
|
||||
it('should create space', async () => {
|
||||
const client = await createClient(connect)
|
||||
const ops = new TxOperations(client, core.account.System)
|
||||
await ops.createDoc(core.class.Space, core.space.Model, {
|
||||
name: 'xxx',
|
||||
description: 'desc',
|
||||
private: false,
|
||||
archived: false,
|
||||
members: []
|
||||
})
|
||||
const txes = await client.findAll(core.class.Space, { name: 'xxx' })
|
||||
expect(txes.length).toBe(1)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user