Skip to content

Commit

Permalink
Merge pull request #1776 from blackflux/dev
Browse files Browse the repository at this point in the history
[Gally]: master <- dev
  • Loading branch information
simlu authored Aug 29, 2023
2 parents 57e5ff0 + a4ae6e6 commit f0da5d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import path from 'path';
import { expect } from 'chai';
import { describe } from 'node-tdd';
import fs from 'smart-fs';
import { setSeed } from '../hot.js';

describe('Testing queue', { envVarsFile: '../env-vars.yml' }, () => {
it('Testing digraph generation', async () => {
setSeed();
process.env.TEST_SEED = Math.random();
const { default: processor } = await import('../../src/queue/queue.js');
const digraphFile = path.join(fs.dirname(import.meta.url), '..', '..', 'src', 'queue', 'digraph.dot');
const digraph = processor.digraph();
Expand Down
2 changes: 1 addition & 1 deletion test/projects/assorted/@sls-queue/test/queue/queue.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import fs from 'smart-fs';

describe('Testing queue', { envVarsFile: '../env-vars.yml' }, () => {
it('Testing digraph generation', async () => {
setSeed();
process.env.TEST_SEED = Math.random();
const { default: processor } = await import('../../src/queue/queue.js');
const digraphFile = path.join(fs.dirname(import.meta.url), '..', '..', 'src', 'queue', 'digraph.dot');
const digraph = processor.digraph();
Expand Down

0 comments on commit f0da5d4

Please sign in to comment.