Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 499e852

Browse files
vinayakkulkarniclarkdo
authored andcommitted
feat: add alias (@/~) support in ava tests (#304)
1 parent 1cb8cd2 commit 499e852

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

template/_package.json

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@
143143
"vue-jest": "^4.0.0-0",
144144
<%_ } else if (test === 'ava') { _%>
145145
"ava": "^2.2.0",
146+
"babel-plugin-module-resolver": "^3.2.0",
146147
"browser-env": "^3.2.5",
147148
"require-extension-hooks": "^0.3.3",
148149
"require-extension-hooks-babel": "^1.0.0",

template/frameworks/ava/ava.config.js

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ export default {
22
require: ['./test/ava.setup.js'],
33
sources: ['**/*.{js,vue}'],
44
files: ['test/specs/**/*'],
5+
babel: {
6+
testOptions: {
7+
plugins: [
8+
[
9+
'module-resolver',
10+
{
11+
root: ['.'],
12+
alias: {
13+
'@': '.',
14+
'~': '.'
15+
}
16+
}
17+
]
18+
]
19+
}
20+
},
521
tap: true,
622
verbose: true
723
}

template/frameworks/ava/test/specs/Logo.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { mount } from '@vue/test-utils'
22
import test from 'ava'
3-
import Logo from '../../components/Logo.vue'
3+
import Logo from '@/components/Logo.vue'
44

55
test('is a Vue instance', (t) => {
66
const wrapper = mount(Logo)

test/snapshots/index.test.js.md

+1
Original file line numberDiff line numberDiff line change
@@ -1869,6 +1869,7 @@ Generated by [AVA](https://ava.li).
18691869
devDependencies: {
18701870
'@vue/test-utils': '^1.0.0-beta.27',
18711871
ava: '^2.2.0',
1872+
'babel-plugin-module-resolver': '^3.2.0',
18721873
'browser-env': '^3.2.5',
18731874
'require-extension-hooks': '^0.3.3',
18741875
'require-extension-hooks-babel': '^1.0.0',

test/snapshots/index.test.js.snap

30 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)