We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c72dc commit c298021Copy full SHA for c298021
packages/all/langs.test.js
@@ -15,9 +15,9 @@ describe('langs', () => {
15
16
// A previously supported language
17
test(Lang.Go, ({ assert }) => {
18
- const sg = parse(Lang.Dart, 'x := "Hello, world!"')
+ const sg = parse(Lang.Go, 'x := "Hello, world!"')
19
const kind = sg.root().kind()
20
- assert.equal(kind, 'program')
+ assert.equal(kind, 'source_file')
21
})
22
23
// A built-in language
0 commit comments