Git Product home page Git Product logo

hemera-sql-store's People

Contributors

starptech avatar

Watchers

 avatar  avatar  avatar

hemera-sql-store's Issues

when using async and await the udpate command fails

When using async/await, it throws error as 1.

    public async update(data: ICount): Promise<ICount> {
        throw await this.hemera.act(
            {
                topic: NATS_HEMERA_DATBASE_MANAGER,
                cmd: 'update',
                collection: CounterRepository.tableName,
                query: {
                    id: data.id,
                },
                data: {
                    amount: data.amount,
                },
            },
        );
    }
    public async  addCount(amount) {
        return this.update({ id: 1, amount: amount });
    }

Test case


    it('addCount', async (done) => {
        try {
            await repo.addCount(1);
            done();
        } catch (err) {
            logger.error(err);
            done.fail();
        }
    });

Error

  ● Hemera-sql-store › addCount

    Failed

      at stackFormatter (../../node_modules/jest-jasmine2/build/expectation_result_factory.js:51:427)
      at Object.it (src/__tests__/hemera-repository.test.ts:130:18)
          at <anonymous>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.