Skip to content

Commit

Permalink
Minial node19 test
Browse files Browse the repository at this point in the history
  • Loading branch information
avevlad committed Apr 24, 2023
1 parent c1deb38 commit 4eae44a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simplest/gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var gulp = require('gulp'),
connect = require('../../index');
var gulp = require('gulp');
var connect = require('../../index');

gulp.task('connect', function() {
connect.server();
Expand Down
6 changes: 6 additions & 0 deletions test/test_node20.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import test from 'node:test';
import assert from 'node:assert';

test('foo', (t) => {
assert.strictEqual(1, 1);
});

0 comments on commit 4eae44a

Please sign in to comment.