Skip to content

Commit

Permalink
Update Thrift (#300)
Browse files Browse the repository at this point in the history
* Update Thrift

* move integration testing to forge

---------

Co-authored-by: heavyai-bot <[email protected]>
Co-authored-by: Christie Villanueva <[email protected]>
  • Loading branch information
3 people authored Apr 22, 2024
1 parent 4b9641b commit d26fdb1
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 7 deletions.
12 changes: 6 additions & 6 deletions test/integration.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"use strict"
const hostname = process.env.HOSTNAME || "metis.mapd.com"
const protocol = process.env.PROTOCOL || "https"
const port = process.env.PORT || "443"
const database = process.env.DATABASE || "heavyai"
const username = process.env.USERNAME || "admin"
const hostname = process.env.HOSTNAME || "forge.mapd.com"
const protocol = process.env.PROTOCOL || "http"
const port = process.env.PORT || "9092"
const database = process.env.DATABASE || "mapd"
const username = process.env.USERNAME || "mapd"
const password = process.env.PASSWORD || "HyperInteractive"

const isNodeRuntime = typeof window === "undefined"
Expand Down Expand Up @@ -549,7 +549,7 @@ describe(isNodeRuntime ? "node" : "browser", () => {
(pixelError, data) => {
expect(pixelError).to.not.be.an("error")
const lon = data[0].row_set[0].dest_lon
expect(lon).to.be.eq(-117.82951354980469)
expect(lon).to.be.eq(-119.05677032470703)
done()
}
)
Expand Down
120 changes: 119 additions & 1 deletion thrift/heavy_types.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d26fdb1

Please sign in to comment.