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

Examples now use AVA 4 #3017

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/endpoint-testing/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = { // eslint-disable-line import/no-anonymous-default-export
files: ['test.*'],
};
5 changes: 3 additions & 2 deletions examples/endpoint-testing/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "ava-endpoint-testing",
"description": "Example for endpoint testing",
"type": "commonjs",
"scripts": {
"test": "ava"
},
"devDependencies": {
"ava": "^3.15.0",
"got": "^11.8.2",
"ava": "^4.2.0",
"got": "^12.0.4",
"test-listen": "^1.1.0"
}
}
24 changes: 13 additions & 11 deletions examples/endpoint-testing/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,24 @@
const http = require('http');

const test = require('ava');
const got = require('got');
const listen = require('test-listen');

const app = require('./app.js');

test.before(async t => {
t.context.server = http.createServer(app);
t.context.prefixUrl = await listen(t.context.server);
});
import('got').then(({got}) => {
test.before(async t => {
t.context.server = http.createServer(app);
t.context.prefixUrl = await listen(t.context.server);
});

test.after.always(t => {
t.context.server.close();
});
test.after.always(t => {
t.context.server.close();
});

test.serial('get /user', async t => {
const {email} = await got('user', {prefixUrl: t.context.prefixUrl}).json();
test.serial('get /user', async t => {
const {email} = await got('user', {prefixUrl: t.context.prefixUrl}).json();

t.is(email, '[email protected]');
t.is(email, '[email protected]');
});
});

3 changes: 3 additions & 0 deletions examples/macros/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default { // eslint-disable-line import/no-anonymous-default-export
files: ['test.*'],
};
2 changes: 1 addition & 1 deletion examples/macros/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
exports.sum = (a, b) => a + b;
export const sum = (a, b) => a + b;
3 changes: 2 additions & 1 deletion examples/macros/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "ava-macros",
"description": "Example for reusing test logic through macros",
"type": "module",
"scripts": {
"test": "ava"
},
"devDependencies": {
"ava": "^3.15.0"
"ava": "^4.2.0"
}
}
14 changes: 7 additions & 7 deletions examples/macros/test.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const test = require('ava');
import test from 'ava'

const {sum} = require('.');
import { sum } from './index.js'

function macro(t, a, b, expected) {
t.is(sum(a, b), expected);
t.is(sum(a, b), expected)
}

macro.title = (providedTitle, a, b, expected) => `${providedTitle || ''} ${a}+${b} = ${expected}`.trim();
macro.title = (providedTitle, a, b, expected) => `${providedTitle || ''} ${a}+${b} = ${expected}`.trim()

test(macro, 2, 2, 4);
test(macro, 3, 3, 6);
test('providedTitle', macro, 4, 4, 8);
test(macro, 2, 2, 4)
test(macro, 3, 3, 6)
test('providedTitle', macro, 4, 4, 8)
3 changes: 3 additions & 0 deletions examples/matching-titles/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default { // eslint-disable-line import/no-anonymous-default-export
files: ['test.*'],
};
3 changes: 2 additions & 1 deletion examples/matching-titles/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "ava-matching-titles",
"description": "Example for running tests with matching titles",
"type": "module",
"scripts": {
"test": "ava --match='*oo*'"
},
"devDependencies": {
"ava": "^3.15.0"
"ava": "^4.2.0"
}
}
24 changes: 23 additions & 1 deletion examples/matching-titles/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
const test = require('ava');
import test from 'ava';

test('foo will run', t => {
t.pass();
Expand All @@ -12,3 +12,25 @@ test('moo will also run', t => {
test.only('boo will run but not exclusively', t => {
t.pass();
});

test('this will not run', t => {
t.fail();
});

test.only('neither will this...', t => {
t.fail();
});


const macro = test.macro({
exec(t, input, expected) {
t.is(eval(input), expected);
},
title(providedTitle = '', input, expected) {
return `${providedTitle} ${input} = ${expected}`.trim();
}
});

// Will not run, no title provided
test(macro, '2 + 2', 4);
test('goo will run', macro, '2 + 2', 4);
3 changes: 2 additions & 1 deletion examples/specific-line-numbers/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "ava-specific-line-numbers",
"description": "Example for running tests at specific line numbers",
"type": "commonjs",
"scripts": {
"test": "ava test.js:5"
},
"devDependencies": {
"ava": "^3.15.0"
"ava": "^4.2.0"
}
}
3 changes: 3 additions & 0 deletions examples/tap-reporter/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default { // eslint-disable-line import/no-anonymous-default-export
files: ['test.*'],
};
3 changes: 2 additions & 1 deletion examples/tap-reporter/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "ava-tap-reporter",
"description": "Example for a custom TAP reporter",
"type": "module",
"scripts": {
"test": "ava --tap | tap-nyan"
},
"devDependencies": {
"ava": "^3.15.0",
"ava": "^4.2.0",
"tap-nyan": "^1.1.0"
}
}
2 changes: 1 addition & 1 deletion examples/tap-reporter/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
const test = require('ava');
import test from 'ava';

test('unicorn', t => {
t.pass();
Expand Down
3 changes: 3 additions & 0 deletions examples/timeouts/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default { // eslint-disable-line import/no-anonymous-default-export
files: ['test.*'],
};
6 changes: 3 additions & 3 deletions examples/timeouts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const delay = ms => new Promise(resolve => {
setTimeout(resolve, ms);
});

exports.fetchUsers = async () => {
export const fetchUsers = async () => {
await delay(50);

return [
Expand All @@ -17,7 +17,7 @@ exports.fetchUsers = async () => {
];
};

exports.fetchPosts = async userId => {
export const fetchPosts = async userId => {
await delay(200);

return [
Expand All @@ -29,7 +29,7 @@ exports.fetchPosts = async userId => {
];
};

exports.createPost = async message => {
export const createPost = async message => {
await delay(3000);

return {
Expand Down
3 changes: 2 additions & 1 deletion examples/timeouts/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "ava-timeouts",
"description": "Example for test timeouts",
"type": "module",
"scripts": {
"test": "ava --timeout=2s --verbose"
},
"devDependencies": {
"ava": "^3.15.0"
"ava": "^4.2.0"
}
}
4 changes: 2 additions & 2 deletions examples/timeouts/test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';
const test = require('ava');
import test from 'ava';

const {fetchUsers, fetchPosts, createPost} = require('.');
import {fetchUsers, fetchPosts, createPost} from './index.js';

test('retrieve users', async t => {
t.timeout(100);
Expand Down
9 changes: 9 additions & 0 deletions examples/typescript-basic/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = { // eslint-disable-line import/no-anonymous-default-export
files: ['**/test.*'],
typescript: {
compile: "tsc",
rewritePaths: {
"source/": "build/"
}
}
};
16 changes: 4 additions & 12 deletions examples/typescript-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,9 @@
"test": "ava"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@sindresorhus/tsconfig": "^1.0.2",
"ava": "^3.15.0",
"typescript": "^4.3.4"
},
"ava": {
"typescript": {
"compile": "tsc",
"rewritePaths": {
"source/": "build/"
}
}
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^2.0.0",
"ava": "^4.2.0",
"typescript": "^4.4.4"
}
}
9 changes: 9 additions & 0 deletions examples/typescript-context/ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = { // eslint-disable-line import/no-anonymous-default-export
files: ['**/test.*'],
typescript: {
compile: "tsc",
rewritePaths: {
"source/": "build/"
}
}
};
16 changes: 4 additions & 12 deletions examples/typescript-context/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,9 @@
"test": "ava"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@sindresorhus/tsconfig": "^1.0.2",
"ava": "^3.15.0",
"typescript": "^4.3.4"
},
"ava": {
"typescript": {
"compile": "tsc",
"rewritePaths": {
"source/": "build/"
}
}
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^2.0.0",
"ava": "^4.2.0",
"typescript": "^4.4.4"
}
}
4 changes: 2 additions & 2 deletions examples/typescript-context/source/test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import anyTest, {TestInterface} from 'ava';
import anyTest, {TestFn} from 'ava';

import {concat} from '.';

const test = anyTest as TestInterface<{sort: (a: string, b: string) => number}>;
const test = anyTest as TestFn<{sort: (a: string, b: string) => number}>;

test.beforeEach(t => {
t.context = {
Expand Down