Kari Heikkinen

Results 4 comments of Kari Heikkinen

You are running test from your current directory with option `-p .` and in that case it will search also from node_modules. Default directory is `tests`

> ``` > describe('describe 1', function () { > it('test 1', function (done) { > expect(200).to.be.equal(200); > done; > }).timeout(30000); > }); > ``` Replace `done;` with `done();`. You need...

> ``` > provider > environment: > FOO: foo functions: > MyFunction: > environment: > BAR: bar ``` I did some testing and this seems to work as expected with...

> I'm having this same issue with `cf` variables being not populated on `sls version: 1.51.0`. > > ```x86 > // variable in serverless.yaml > custom: > DeviceDatabase: ${cf.us-west-1:my-stack.DeviceDatabase} >...