Skip to content

Commit

Permalink
ci: Trying to find out the cause
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Mar 26, 2020
1 parent 536193b commit ca1ae47
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/tests/full-icu.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { getResolvedLocale } from '../helpers/get-resolved-locale.js';
import { APP_INDEX_URL } from './constants.js';
import {
ok, strictEqual,
deepStrictEqual,
ok,
strictEqual,
} from './helpers/typed-assert.js';

describe('timezones', () => {
Expand Down Expand Up @@ -39,7 +41,10 @@ describe('timezones', () => {
await a.updateComplete;

done(
(a as any)._formatters.fullDateFormat(new Date('2020-03-03'))
[
a.locale,
(a as any)._formatters.fullDateFormat(new Date('2020-03-03')),
]
// a.locale,
// Array.from(
// a.shadowRoot?.querySelectorAll('.full-calendar__day') ?? []
Expand All @@ -53,7 +58,7 @@ describe('timezones', () => {
month: 'short',
day: 'numeric',
}).format(new Date('2020-03-03')));
strictEqual(content, '');
deepStrictEqual(content, []);
});

});

0 comments on commit ca1ae47

Please sign in to comment.