:Apply templates (#3799)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-10-07 16:38:21 +06:00
committed by GitHub
parent 96b0cae268
commit 9075e300ca
1014 changed files with 6848 additions and 8091 deletions
@@ -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)
})
})