Compare commits

...
Author SHA1 Message Date
Michael Shaw 8d4d635872 dialing timeout back down 2023-01-26 16:51:45 -05:00
Michael Shaw 53a3696294 trying giant timeout for github action... completes locally under 2 minutes 2023-01-26 13:23:51 -05:00
Michael Shaw d7cfb3b05c double timeout of naming test that times out in laconicd container testing 2023-01-26 10:38:55 -05:00
Ian Norden 80348594f8 Merge pull request #20 from cerc-io/zramsay-patch-1
remove duplicate line in tests
2023-01-12 18:59:34 -06:00
Zach 55675c7b55 rm duplicate line (typo?) 2023-01-11 18:27:00 -05:00
Zach 10d58ca028 Merge pull request #19 from cerc-io/ian/bump_version
Update package to 0.1.5
2023-01-11 17:02:56 -05:00
i-norden 95bdacb4a1 version 0.1.5 2023-01-11 15:48:24 -06:00
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@cerc-io/laconic-sdk",
"version": "0.1.4",
"version": "0.1.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:cerc-io/laconic-sdk.git",
+1 -2
View File
@@ -7,7 +7,7 @@ import { ensureUpdatedConfig, getConfig } from './testing/helper';
const WATCHER_YML_PATH = path.join(__dirname, './testing/data/watcher.yml');
jest.setTimeout(120 * 1000);
jest.setTimeout(180 * 1000);
const { chainId, restEndpoint, gqlEndpoint, privateKey, fee } = getConfig();
@@ -244,7 +244,6 @@ const namingTests = () => {
const records = await registry.lookupNames([crn], true);
expect(records).toBeDefined();
expect(records).toBeDefined();
expect(records).toHaveLength(1);
const [{ latest }] = records;