diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-02-10 22:52:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 22:52:04 -0500 |
commit | e2b84eb5a6e5143ad31fa812a6e27b51ee11144c (patch) | |
tree | 80b449b6e97bc1efbcd9f79215cfaa92e2c73d49 /test/golang-tests.ts | |
parent | 342427ecdeb1ade4f59272414c2e3fe65fe00db1 (diff) | |
download | compiler-explorer-e2b84eb5a6e5143ad31fa812a6e27b51ee11144c.tar.gz compiler-explorer-e2b84eb5a6e5143ad31fa812a6e27b51ee11144c.zip |
Tsify lib/handlers/api (#4704)gh-6238
<!-- THIS COMMENT IS INVISIBLE IN THE FINAL PR, BUT FEEL FREE TO REMOVE
IT
Thanks for taking the time to improve CE. We really appreciate it.
Before opening the PR, please make sure that the tests & linter pass
their checks,
by running `make check`.
In the best case scenario, you are also adding tests to back up your
changes,
but don't sweat it if you don't. We can discuss them at a later date.
Feel free to append your name to the CONTRIBUTORS.md file
Thanks again, we really appreciate this!
-->
Diffstat (limited to 'test/golang-tests.ts')
-rw-r--r-- | test/golang-tests.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/golang-tests.ts b/test/golang-tests.ts index e0dbb63bc..0e84382a4 100644 --- a/test/golang-tests.ts +++ b/test/golang-tests.ts @@ -24,11 +24,12 @@ import {GolangCompiler} from '../lib/compilers/golang'; import * as utils from '../lib/utils'; +import {LanguageKey} from '../types/languages.interfaces'; import {fs, makeCompilationEnvironment, makeFakeCompilerInfo} from './utils'; const languages = { - go: {id: 'go'}, + go: {id: 'go' as LanguageKey}, }; let ce; |