Skip to content

Commit

Permalink
test: rename some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amoncaldas committed Oct 25, 2021
1 parent a15b1c8 commit 2262ef2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/integration/specs/AppRender.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import store from '@/store/store'
import '@babel/polyfill'

describe('App rendering', () => {
it('should render app initial page', (done) => {
it('should render app', (done) => {
let appLoader = new AppLoader()
appLoader.loadApp(AppRootComponent, '#app', '<App/>').then(vueInstance => {
vueInstance.appHooks.loadRegisteredHooks()
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/specs/BuildMapData.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import AppLoader from '@/app-loader'
import Place from '@/models/place'
import store from '@/store/store'

describe('Build map mapViewData', () => {
describe('MapViewData building', () => {
it('should build directions mapViewData', async (done) => {
await new AppLoader().fetchApiInitialData()
expect(store.getters.mapSettings.apiKey).toBeDefined()
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/specs/MapRender.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import appConfig from '@/config/app-config'
import AppLoader from '@/app-loader'
import store from '@/store/store'

describe('Map render', () => {
describe('Map rendering', () => {
it('should render map-view component', async (done) => {
await new AppLoader().fetchApiInitialData()
const MapConstructor = PreparedVue.extend(MapView)
Expand Down

0 comments on commit 2262ef2

Please sign in to comment.