Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

14 linhas
435 B

  1. /* eslint-env mocha */
  2. import expect from "expect"
  3. import path from "path"
  4. import getAbsoluteFSPath from "../../swagger-ui-dist-package/absolute-path"
  5. describe("swagger-ui-dist", function(){
  6. describe("getAbsoluteFSPath", function(){
  7. it("returns absolute path", function(){
  8. const expectedPath = path.resolve(__dirname, "../../swagger-ui-dist-package")
  9. expect(getAbsoluteFSPath()).toEqual(expectedPath)
  10. })
  11. })
  12. })