make dist absolutePath browser-safe, add test

This commit is contained in:
Dylan
2017-06-10 15:58:34 -07:00
parent d6d5b1d06e
commit df149c543b
4 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
/* eslint-env mocha */
import expect from "expect"
import path from "path"
import absolutePath from "../../swagger-ui-dist-package/absolute-path"
describe("swagger-ui-dist", function(){
describe("absolutePath", function(){
it("has absolute path", function(){
const expectedPath = path.resolve(__dirname, "../../swagger-ui-dist-package")
expect(absolutePath).toEqual(expectedPath)
})
})
})