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

Problemas autocompletado en el body de un test #155

Closed
ivojawer opened this issue Mar 20, 2024 · 0 comments · Fixed by #165
Closed

Problemas autocompletado en el body de un test #155

ivojawer opened this issue Mar 20, 2024 · 0 comments · Fixed by #165
Labels
bug Something isn't working component: autocomplete Autocomplete / Code Assist component

Comments

@ivojawer
Copy link
Contributor

ivojawer commented Mar 20, 2024

Estas cosas funcionan al estar autocompletando en el body de un metodo pero no en un test

Autocomplete en el body:

teniendo definida una pepita:

object pepita {
    var property energia = 100

    method vola(kms){
        energia -= kms * 4
    }
}

si estoy haciendo un test:

import pepita.*

describe "tests de pepita" {
  test "pepita vuela" {
     //con el cursor aca
  }
}

Al iniciar un pedido de autocomplete no me ofrece pepita:
image

Autocomplete en un parametro

De forma parecida cuando estoy escribiendo un parametro:

import pepita.*

describe "tests de pepita" {
  test "pepita vuela" {
    pepita.vola(10)
    assert.equals(60, /*con el cursor aca*/ )
  }
}

Tampoco me ofrece a pepita:

image

@ivojawer ivojawer added bug Something isn't working component: autocomplete Autocomplete / Code Assist component labels Mar 20, 2024
@ivojawer ivojawer changed the title Problemas autocompletado en el curpo de un test Problemas autocompletado en el body de un test Mar 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working component: autocomplete Autocomplete / Code Assist component
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant