Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only :as and :refer options supported in :require / :require-macros; #28

Closed
johanatan opened this issue Sep 15, 2015 · 2 comments
Closed

Comments

@johanatan
Copy link

clojure.lang.ExceptionInfo: Only :as and :refer options supported in :require / :require-macros; offending spec: [doo.runner :refer-marcos [doo-all-tests doo-tests]] at line 2 test/graphql-tlc/runner.cljs {:file #object[java.io.File 0x2ca93dee "test/graphql-tlc/runner.cljs"], :line 2, :column 1, :tag :cljs/analysis-error}

My runner looks like so:

Jonathans-MacBook-Pro:graphql-type-lang-compiler jonathan$ cat test/graphql-tlc/runner.cljs 

(ns graphql-tlc.runner
  (:require [cljs.test :as test]
            [doo.runner :refer-marcos [doo-all-tests doo-tests]]
            [graphql-tlc.test.core]))

(doo-tests 'graphql-tlc.test.core)
@bensu
Copy link
Owner

bensu commented Sep 15, 2015

There is a typo in the ns declaration: :refer-marcos should be :refer-macros.

Let me know if you have any more problems :)

@johanatan
Copy link
Author

Doh! Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants